Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Cloudflare Quick Tunnels(cloudflare.com ↗)
    84comments
  2. An Empirical Study of Harness Design for Coding Agents(arxiv.org ↗)
    33comments
  3. North Korean nuclear test sets off years of earthquakes(science.org ↗)
    54comments
  4. I vibed a proof of Conway's conjecture(overreacted.io ↗)
    84comments
  5. Show HN: Microsoft Office running with Wine on Linux with no virtualization(github.com/tombert ↗)
    14comments
  6. OpenJev(openjev.com ↗)
    200comments
  7. C++26: Trivial infinite loops are no longer undefined behaviour(sandordargo.com ↗)
    76comments
  8. Show HN: Cactus Needle 3: 8-29MB automation models can match DeepSeek V4 Flash(cactuscompute.com ↗)
    3comments
  9. US Treasuries Have Become Unappetizing for Foreign Central Banks and Governments(wolfstreet.com ↗)
    22comments
  10. Mathematicians Build Long-Awaited Graph Sandwich(quantamagazine.org ↗)
    2comments
  11. GrassLobster: AI Agentic Generation of Parametric Geometry Workflows(miro.vision ↗)
    2comments
  12. I don't like passkeys(hawksley.dev ↗)
    467comments
  13. A heap overflow and SSO misconfiguration to compromise OpenAI internal repos(hacktron.ai ↗)
    175comments
  14. The Shadows Lurking in the Equations – Underwater Islands(gods.art ↗)
    8comments
  15. NATS publishes preliminary report on technical incident of 8 September(nats.aero ↗)
    18comments
  16. Cekura (YC F24) Is Hiring(ycombinator.com ↗)
    discuss
  17. AI is an elite crime spree(thebignewsletter.com ↗)
    14comments
  18. Jemalloc 5.4.0(github.com/jemalloc ↗)
    70comments
  19. The scourge of x86 emulation(fex-emu.com ↗)
    66comments
  20. Build Faster Feedback Loops Using Qualitative User Research(nseldeib.com ↗)
    discuss
  21. Warren Buffett Steps Down as Berkshire Chairman, Names Son to Replace Him(nytimes.com ↗)
    142comments
  22. Bonsai 2 27B: Near-Lossless Compression in a 9x Smaller Footprint(prismml.com ↗)
    172comments
  23. Show HN: Scry, programmable internet search w/ congestion pricing(scry.io ↗)
    discuss
  24. Qwen 3.8 Omni Flash(qwen.ai ↗)
    111comments
  25. Second Circuit Allows Government to Search Electronic Devices at the Border(knightcolumbia.org ↗)
    30comments
  26. BeanShell3 in Development(beanshell.github.io ↗)
    8comments
  27. Microsoft exec called AI scraping 'the largest theft of labor in human history'(techcrunch.com ↗)
    600comments
  28. How to Write with an LLM(sockpuppet.org ↗)
    181comments
  29. Pre-Greek: The lost language hidden within Ancient Greek(linguisticdiscovery.com ↗)
    58comments
  30. Rabbit Hole: Minimum L-seams(fractalkitty.com ↗)
    discuss

Incident report on memory leak caused by Cloudflare parser bug

115 pointsby 9y agoblog.cloudflare.com
11 comments
9y agoHN ↗

"With the help of Google, Yahoo, Bing and others, we found 770 unique URIs that had been cached and which contained leaked memory... The leaked memory has been purged with the help of the search engines."

I wonder if the search engines found any interesting patterns of searches performed whose results contained these 770 unique URIs.

9y agoHN ↗

I've always wondered if Google did that. Seems obvious enough to just watch people using premade searches and see what they are up to.

9y agoHN ↗

@jgrahamc:

What are your thoughts about Tavis' remark that Cloudflare's communications (the "draft", post-mortem, etc.) "severely downplays" this issue?

9y agoHN ↗

Calling this a "memory leak" is rather misleading. The problem is literally leaking the contents of memory, yes, but the term memory leak usually means something else, something that is usually not as problematic as dumping random memory to the internet.

9y agoHN ↗

I'm a Cloudflare (free) customer, and I've had no email or contact of any kind from Cloudflare.

My understanding from reading this and Travis' post is that all Cloudflare customers are affected, is that correct?

9y agoHN ↗

No. If you have any of those features enabled Email obfuscation, Server-side Excludes and Automatic HTTPS Rewrites as well as you have an invalid HTML markup. Per their blog post it is 0.00003% of the total requests.

9y agoHN ↗

I thought those were the conditions that caused PII to be included in the HTML response, but the PII could come from any customer as it's a buffer overrun situation. Damn this is confusing

9y agoHN ↗

Basically yes. If some of your traffic was flowing through a server on which any customer had the vulnerable features enabled, parts of your traffic may have been dumped.

9y agoHN ↗

I wonder if they rewrite their unsafe C code with Rust, would this bug still likely to happen?