Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Cloudflare Quick Tunnels(cloudflare.com ↗)
    179comments
  2. Android 17 is the first since 3.x to add new APIs without releasing to the AOSP(grapheneos.social ↗)
    5comments
  3. Saving another 100TB of RAM with math (and Rust)(cloudflare.com ↗)
    2comments
  4. Photon-Emission-Guided Laser Fault Injection Enables RP2350 Secure Debug(ledger.com ↗)
    27comments
  5. Apple releases iPhone Duo simulator and Xcode 27.1 beta(developer.apple.com ↗)
    1comments
  6. Show HN: Cactus Needle 3: 8-29MB automation models can match DeepSeek V4 Flash(cactuscompute.com ↗)
    50comments
  7. Cache-to-Cache: Direct Semantic Communication Between Large Language Models(arxiv.org ↗)
    discuss
  8. OpenJev(openjev.com ↗)
    228comments
  9. US Military had close call after using AI for hallucinated intelligence report(cnn.com ↗)
    142comments
  10. North Korean nuclear test sets off years of earthquakes(science.org ↗)
    115comments
  11. The Implications of Linguistic Illegibility for LLM Security(arxiv.org ↗)
    3comments
  12. C++26: Trivial infinite loops are no longer undefined behaviour(sandordargo.com ↗)
    132comments
  13. I vibed a proof of Conway's conjecture(overreacted.io ↗)
    141comments
  14. Show HN: Ax-check.com – Can agents use your product?(ax-check.com ↗)
    16comments
  15. Systemd is a suite of basic building blocks(systemd.io ↗)
    35comments
  16. The first new cat species discovered in 100 years(nationalgeographic.com ↗)
    9comments
  17. A heap overflow and SSO misconfiguration to compromise OpenAI internal repos(hacktron.ai ↗)
    189comments
  18. Inside ZCode: Silently uploading your Git history to the cloud(ferstar.org ↗)
    84comments
  19. Our brain evolved from two primitive nervous systems that merged: Study(newscientist.com ↗)
    14comments
  20. Mathematicians Build Long-Awaited Graph Sandwich(quantamagazine.org ↗)
    12comments
  21. Cekura (YC F24) Is Hiring(ycombinator.com ↗)
    discuss
  22. Minimal Phone 2(minimalcompany.com ↗)
    74comments
  23. How SpaceX streamlined the Raptor engine(construction-physics.com ↗)
    4comments
  24. A search-and-inference database from scratch in pure Zig(antfly.io ↗)
    5comments
  25. Border agents can search cellphones without a warrant or reasonable suspicion(lawandcrime.com ↗)
    29comments
  26. Warez: The Infrastructure and Aesthetics of Piracy (2021)(archive.org ↗)
    4comments
  27. Show HN: Scry, programmable internet search w/ congestion pricing(scry.io ↗)
    11comments
  28. How to Write with an LLM(sockpuppet.org ↗)
    208comments
  29. Jemalloc 5.4.0(github.com/jemalloc ↗)
    79comments
  30. I don't like passkeys(hawksley.dev ↗)
    634comments

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?