frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Physics of Squeaking Sneakers

https://arstechnica.com/science/2026/02/the-physics-of-squeaking-sneakers/
1•PaulHoule•20s ago•0 comments

Smarter, Faster, Personal: The New Google Workspace

https://workspace.google.com/blog/product-announcements/reimagining-content-creation
1•alokDT•25s ago•0 comments

Ideology, not science, drove the global prohibition of psychedelics

https://www.psypost.org/new-analysis-shows-ideology-not-science-drove-the-global-prohibition-of-p...
1•robtherobber•43s ago•0 comments

10x Is the New Floor

https://writing.nikunjk.com/p/10x-is-the-new-floor
1•vinhnx•56s ago•0 comments

White men will have 'fewer board seats' in future, says UK diversity chair

https://www.ft.com/content/2ef678ea-843c-45a1-abec-f81f48e7b8d2
1•pretext•1m ago•0 comments

Teaching LLMs to reason like Bayesians

https://research.google/blog/teaching-llms-to-reason-like-bayesians/
1•vinhnx•1m ago•0 comments

Studio Display XDR: Technology Overview [pdf]

https://www.apple.com/studio-display-xdr/pdf/Studio_Display_XDR_Technology_Overview_White_Paper.pdf
1•tosh•1m ago•0 comments

IDs+ Protocol: Solving the CJK Tokenization 'Byte-Premium' in LLMs

https://github.com/oruc001/IDS-Plus-Protocol
1•oruc001•1m ago•0 comments

How are you using local LLMs for code? (esp. security/IP protection)

1•antipaul•2m ago•0 comments

The Movie Buffs Who Track Film Profits as If They Work in Hollywood

https://www.wsj.com/arts-culture/film/fans-tracking-box-office-results-numbers-a18e12ef
1•sonabinu•2m ago•0 comments

Mira Murati's Thinking Machines strikes multibillion chip deal with Nvidia

https://www.ft.com/content/a8853057-c0a3-46f6-817f-7a23e79ea4e2
1•pretext•3m ago•0 comments

Abusing .arpa, the TLD that isn't supposed to host anything

https://www.infoblox.com/blog/threat-intelligence/abusing-arpa-the-tld-that-isnt-supposed-to-host...
1•birdculture•3m ago•0 comments

Are AI Tools Ready to Answer Patients' Questions About Their Medical Care?

https://jamanetwork.com/journals/jama/fullarticle/2846269
1•geox•5m ago•0 comments

Show HN: StateSurface – server-owned state and NDJSON streaming for MPA pages

https://github.com/superlucky84/state-surface
1•superlucky84•5m ago•1 comments

IronDiff – Network Config Backup and Analysis

1•MattRos•6m ago•0 comments

Ruby Users Forum February–March Update

https://www.rubyforum.org/t/monthly-update-february-wrap-up-march-preview/177
1•todsacerdoti•7m ago•0 comments

Amazon Wins Court Order Blocking Perplexity AI Shopping Bots

https://www.bloomberg.com/news/articles/2026-03-10/amazon-wins-court-order-blocking-perplexity-s-...
1•juokaz•9m ago•0 comments

Fooling AI Agents: Web-Based Indirect Prompt Injection Observed in the Wild

https://unit42.paloaltonetworks.com/ai-agent-prompt-injection/
2•tcbrah•9m ago•0 comments

Precision Learning Has the Potential to Do What Personalized Learning Could Not

https://www.the74million.org/article/precision-learning-has-the-potential-to-do-what-personalized...
1•jyunwai•9m ago•0 comments

Towards "Let's Encrypt" for Document Signing

https://documenso.com/blog/building-documenso-part-3---aes-qes-qtsp
1•ElTimuro•10m ago•1 comments

Amazon asks senior engineers to address issues created by 'AI assisted changes'

https://www.tomshardware.com/tech-industry/artificial-intelligence/amazon-calls-engineers-to-addr...
3•cdrnsf•10m ago•1 comments

Tesla FSD drives through railroad crossing barriers in viral video

https://electrek.co/2026/03/09/tesla-fsd-drives-through-railroad-crossing-barriers-viral-video/
1•nixass•10m ago•0 comments

Why on-device agentic AI can't keep up

https://martinalderson.com/posts/why-on-device-agentic-ai-cant-keep-up/
1•devy•10m ago•0 comments

Rust Coreutils 0.7 Released with Many Performance Optimizations

https://www.phoronix.com/news/Rust-Coreutils-uutils-0.7
1•Bender•10m ago•0 comments

$3 ChromeOS Flex stick will revive old and outdated computers

https://9to5google.com/2026/03/10/this-3-chromeos-stick-will-revive-old-and-outdated-computers/
2•pentagrama•12m ago•0 comments

Ultra-compact photonic AI chip operates at the speed of light

https://techxplore.com/news/2026-03-ultra-compact-photonic-ai-chip.html
1•Brajeshwar•12m ago•0 comments

Tiny transmitter could help scientists understand surprisingly social wasps

https://spectrum.ieee.org/rf-tags
1•Brajeshwar•12m ago•0 comments

Hiroo Onoda: The Japanese Soldier Who Continued Fighting World War II Until 1974

https://www.utterlyinteresting.com/post/hiroo-onoda-japanese-soldier-who-fought-ww2-until-1974
1•freediver•13m ago•0 comments

Experiments.md to stay sane down the rabbit hole

https://www.execfoo.de/blog/experiments.html
1•softwarehippie•13m ago•0 comments

Trump Admin Cyber Strategy Centers Private Sector in Offensive Cyber Operations

https://www.lawfaremedia.org/article/trump-admin-cyber-strategy-centers-private-sector-in-offensi...
1•hn_acker•13m ago•0 comments
Open in hackernews

Thr8 – GitHub Action that auto-generates PASTA threat models from your codebase

https://github.com/cybrking/thr8
1•tfeld001•1d ago

Comments

tfeld001•1d ago
I built a GitHub Action that generates PASTA (Process for Attack Simulation and Threat Analysis) threat models automatically by analyzing your repository's code, infrastructure, and dependencies.

The problem: Every security framework says you should threat model. Almost nobody does it consistently. A proper PASTA assessment takes days per application. Most teams produce one for an audit, shove it in Confluence, and never touch it again.

How it works:

Two-phase approach:

Static discovery (no AI): Walks the repo tree and collects tech stack (package.json, requirements.txt, go.mod), infrastructure configs (Terraform, Docker, K8s), API endpoints, auth mechanisms, and data flow patterns. Files are prioritized by security relevance — routes and auth middleware get read before utility files.

AI reasoning (Claude API): The collected context plus a STRIDE attack pattern database (~40 patterns across API, auth, database, and storage categories) gets sent to Claude in 3 focused calls. Covers business objectives, attack surfaces, kill chain scenarios, and risk scoring following the full 7-stage PASTA framework.

Output: Markdown with Mermaid data flow diagrams, JSON for CI/CD integration, HTML for stakeholders, optional PDF.

Remediation: Optionally creates GitHub Issues for findings and AI-generated fix PRs for critical/high vulnerabilities. Deduplication built in so you don't get duplicate issues on repeat runs.

Setup is 6 lines of YAML:

- name: Generate Threat Model uses: cybrking/thr8@v1 with: anthropic-api-key: ${{ secrets.ANTHROPIC_API_KEY }} github-token: ${{ secrets.GITHUB_TOKEN }} create-issues: 'true' auto-fix: 'true' Costs about $0.05-0.15 per run (3 Claude API calls). Supports JS/TS, Python, Go, Java, Ruby with popular frameworks. Open source, MIT license.

What I'd like feedback on:

How realistic are the kill chain scenarios compared to manual assessments? Is the STRIDE pattern database missing common patterns? How would you use this in your pipeline — every PR, weekly, or just on pushes to main?