Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Laya the open source version of Jev(convaiinnovations.com ↗)
    27comments
  2. Human brain is two separate organs, Stanford Medicine-led research finds(stanford.edu ↗)
    137comments
  3. AI-generated posters don’t have to be horrible(john.hartnup.uk ↗)
    285comments
  4. “The Secret Life of Circuits” is here(coredump.cx ↗)
    31comments
  5. GPT-6 Astra Solves a WWI German Radio Cipher(prinzai.com ↗)
    101comments
  6. Android 17 is the first since 3.x to add new APIs without releasing to the AOSP(grapheneos.social ↗)
    487comments
  7. San Francisco Onion Futures Company(onionfutures.com ↗)
    87comments
  8. If math is more than proof, we need to better celebrate the rest of it(terrytao.wordpress.com ↗)
    134comments
  9. Show HN: I wrote a custom assembler for CHIP-8 in C++(github.com/tackx ↗)
    3comments
  10. Communication by means of modulated Johnson noise(pnas.org ↗)
    11comments
  11. Cloudflare Quick Tunnels(cloudflare.com ↗)
    294comments
  12. How to Write with an LLM(sockpuppet.org ↗)
    349comments
  13. Ray Ozzie and the Optimism of Being Early(reproof.app ↗)
    1comments
  14. You can run Git on object storage if you re-make packfiles(tigrisdata.com ↗)
    19comments
  15. From Stonemasons to Carpenters(thelastsoftwareengineer.substack.com ↗)
    3comments
  16. SDCC – Small Device C Compiler(sourceforge.net ↗)
    20comments
  17. Saving another 100TB of RAM(cloudflare.com ↗)
    85comments
  18. Science Is Open Software(jepedersen.dk ↗)
    43comments
  19. How OpenAI Used Its Own LLMs to Design Its Jalapeño Chip(ieee.org ↗)
    100comments
  20. Why building a Rust LSP is hard(rust-glancer.github.io ↗)
    41comments
  21. NASA-IBM Lunar Foundation open-Source Geospatial AI Model(usra.edu ↗)
    4comments
  22. Ctenophores: Wonders of Biology(quantamagazine.org ↗)
    6comments
  23. The first new cat species discovered in 100 years(nationalgeographic.com ↗)
    112comments
  24. OpenJev(openjev.com ↗)
    273comments
  25. Goroutine Leak Profiles(go.dev ↗)
    5comments
  26. Show HN: Cactus Needle 3: 8-29MB automation models can match DeepSeek V4 Flash(cactuscompute.com ↗)
    89comments
  27. Photon-Emission-Guided Laser Fault Injection Enables RP2350 Secure Debug(ledger.com ↗)
    75comments
  28. Veronese's Dogs(publicdomainreview.org ↗)
    2comments
  29. Warez: The Infrastructure and Aesthetics of Piracy (2021)(archive.org ↗)
    92comments
  30. Cache-to-Cache: Direct Semantic Communication Between LLMs (2025)(arxiv.org ↗)
    15comments

Suppress vulnerabilities applying Kubernetes context to scans

8 pointsby 1d agogithub.com
2 comments
1d agoHN ↗

vex8s is an open source tool that analyzes Kubernetes workloads and generates VEX documents based on their SecurityContext.

The idea is to distinguish vulnerabilities that are actually exploitable in a given deployment from those mitigated by Kubernetes security settings (for example, readOnlyRootFilesystem, dropped capabilities, non-root users, and read-only volume mounts).

vex8s embeds a ML model trained on CVE data to predict vulnerability classes, then combines those predictions with the workload's security configuration to determine whether a vulnerability can be mitigated.

I'm particularly interested in feedback on the decision logic and on whether this approach could be useful as part of a vulnerability scanning pipeline.

GitHub: https://github.com/alegrey91/vex8s

3h agoHN ↗

This is very cool, why not directly test the exploitability direct with harmless pods on the cluster for verification? If it's only model based as a defender I'd worry about how many % of misses arise. Even frontier models are going to miss some stuff, a programmatic gate seems prudent.

Not trying to be negative, do think it's a good approach youve got, but the modern reality of dealing with cve's and compliance is to just fix them because it's a massive headache trying to write exemptions for all the ones that don't matter. Been my experience anyway.