Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. GPT-6 Sol and Luna(openai.com)
    420comments
  2. Claude Opus 5.5(anthropic.com)
    645comments
  3. OpenAI GPT–6 Astra breaks Enigma message that has resisted solution since 2005(cryptocellar.org)
    337comments
  4. SAML: A Fractal of Bad Design(trailofbits.com)
    17comments
  5. 'We hacked the FBI:' Hackers say they have data on all FBI employees(404media.co)
    35comments
  6. Claude Opus 5.5 Intelligence, Performance and Price Analysis (Max)(artificialanalysis.ai)
    49comments
  7. Obscura: The first VPN that can't log your activity(obscura.com)
    28comments
  8. WordPress: Unauthenticated path traversal leading to conditional RCE(github.com/wordpress)
    53comments
  9. Unreal Agent(unreallabs.ai)
    37comments
  10. Native apps written in TypeScript and CSS(github.com/geastack)
    5comments
  11. What California is learning from solar panels built over irrigation canals(kqed.org)
    3comments
  12. Explaining to business people why building software is still hard(manager.dev)
    29comments
  13. An update on how we confirm your age group on Discord(discord.com)
    5comments
  14. Show HN: Training a model to identify AI web content from structure alone(arxiv.org)
    4comments
  15. OpenAI is well positioned to fast-follow Jev(arcturus-labs.com)
    165comments
  16. Show HN: JevBench, a reproducible benchmark for typed decision models(benchmarkheaven.com)
    discuss
  17. MUNI Heritage Weekend in San Francisco(lawrence.lu)
    30comments
  18. Markdown in /src(htmx.org)
    10comments
  19. Did OpenAI solve the wrong Navier-Stokes problem?(scientificamerican.com)
    5comments
  20. How did AMD Ryzen get 50% faster in two years?(lemire.me)
    18comments
  21. Overreliance on AI contributed to missile strike on Iran school – Pentagon(bloomberg.com)
    112comments
  22. 16-bit Intel 8088 chip (c. 1985)(allpoetry.com)
    12comments
  23. The JavaScript Midlife Crisis(maroun-baydoun.com)
    3comments
  24. A Faster Shortest Path Algorithm(vals.ai)
    4comments
  25. Launch HN: Coverage Cat (YC S22) – Umbrella insurance via your personal agent(coveragecat.com)
    19comments
  26. George Lucas Returns to Earth, Bearing Gifts(commonedge.org)
    14comments
  27. There's a high chance of devices being sold with GrapheneOS preinstalled in 2027(grapheneos.social)
    84comments
  28. Apple has added persistent 'ads' to iOS, and it's driving users crazy(techradar.com)
    385comments
  29. People hooked on vapes try a new way to quit: cigarettes(bloomberg.com)
    36comments
  30. Writing Rust code that's fast by asking agents to make the code faster(minimaxir.com)
    46comments

Packets in Packets: Orson Welles’ In-Band Signaling Attacks for Modern Radios

10 pointsby 15y agousenix.org
2 comments
15y agoHN ↗

Simplified synopsis: digital RF frames have preambles, sync symbols, and then bodies. When RX errors occur in the preamble or sync, the radio may "seek" to the next valid-looking preamble or sync. Since most digital RF protocols encode the preamble or the sync using the same symbol set as the body, there are byte sequences that mimic the preamble and sync of a wireless frame.

The RX errors we're talking about happen frequently.

So for instance, if my wireless network was unencrypted, and you DCC'd me on IM and sent me a giant file, and that file had repeated byte sequences that mimicked RF frames, you could inject frames onto my wireless network.

This is the moral equivalent of +++ATH0 for modems back in the day.

Crazy.

15y agoHN ↗

Cryptography for which the attacker has no key is a much greater impediment to remote PIP injection than it is to a local eavesdropper. This is because the attacker needs to know both the cryptographic key and the counter or nonce. In the case of a known key and nonce, an attacker could conceivably work backward to product a block which, once encrypted, contains a PIP. The exact procedure for doing so depends upon the presence of numerous cryptographic mistakes by the vector protocol and is beyond the scope of this paper

This is amazing. I'd love to see someone pull this off.