Earlier quoted context omitted.
Yup, this made it crystal clear, years ago, that Cloudflare's business incentives were and are at odds with a secure web.
I don't buy this argument. A site using Flexible SSL is no less secure than one using http:// , and in fact is more secure, because nobody can MitM the connection between CloudFlare and the end user. The only thing vulnerable is the connection between the website and CloudFlare (~~and only to MitM, not to passive sniffing~~ EDIT: this isn't true, see [1]), but that's a much smaller and much better-protected surface a…
Cloudflare Reverse Proxies Are Dumping Uninitialized Memory
81–90 of 1001 posts
Re: Cloudflare Reverse Proxies Are Dumping Uninitialized Memory
#82Earlier quoted context omitted.
I don't think he had to, but he got an answer in minutes. I don't think that's the part to be worried about. As for what you should do: it sounds like the impact is relatively low. I'd personally change easily-changed secrets which go over the session, and potentially externally facing customer passwords (yes in enterprise, maybe not in consumer). (I don't have any insider info on this breach, though, but I read both…
Read Tavis' comments. He disagrees with you regarding the severity. This is a big f--king deal!
Re: Cloudflare Reverse Proxies Are Dumping Uninitialized Memory
#83My first thought was relief, thank god I'm not using Cloudflare. Where would you even start to address this? Everything you've been serving is potentially compromised, API keys, sessions, personal information, user passwords, the works. You've got no idea what has been leaked. Should you reset all your user passwords, cycle all or your keys, notify all your customers that there data may have been stolen? My second th…
> My second thought after relief was the realization that even as a consumer I'm affected by this, my password manager has > 100 entries what percentage of them are using CloudFlare? Should I change all my passwords? Yes. Right now. Don't wait for the vendor to notify you. > What an epic mess. This is the problem with centralization, the system is broken. Yep.
Re: Cloudflare Reverse Proxies Are Dumping Uninitialized Memory
#84Everyone: change your HN password asap!
Re: Cloudflare Reverse Proxies Are Dumping Uninitialized Memory
#85Step 1) MITM the entire Internet, undermining its SSL infrastructure, build a business around it Step 2) leak cleartext from said MITM'd connections to the entire Internet I recently noted that in some ways Cloudflare are probably the only entity to have ever managed to cause more damage to popular cryptography since the 2008 Debian OpenSSL bug (thanks to their "flexible" ""SSL"" """feature"""), but now I'm certain o…
I'd guess it's because of the crude and reductive way you describe the service cloudflare provides. I don't know what type of programming you do, but many small services don't have the infrastructure to mitigate the kind of attacks cloudflare deals with and they wouldn't be around without services like this.
I don't like the internet becoming centralized into a few small places that mitigate DDOS attacks like this, but I like the alternative (being held ransom by anyone with access to a botnet) even less.
I'm going to take a more even handed approach than what you're suggesting. Any time you work with a service like this you risk these kinds of things - it's part of the implicit cost/benefit analysis humans do every day. I'm not ready to throw out the baby with the bathwater because of one issue. I'm not sure what alternative you're suggesting (I didn't see any suggestions, just a lot of ranting, which might also contribute to the 'revulsion') but it doesn't sound any better than what we have.
Re: Cloudflare Reverse Proxies Are Dumping Uninitialized Memory
#86TL;DR for the lazy ones: > The examples we're finding are so bad, I cancelled some weekend plans to go into the office on Sunday to help build some tools to cleanup. I've informed cloudflare what I'm working on. I'm finding private messages from major dating sites, full messages from a well-known chat service, online password manager data, frames from adult video sites, hotel bookings. We're talking full https reques…
Re: Cloudflare Reverse Proxies Are Dumping Uninitialized Memory
#87Earlier quoted context omitted.
I don't blame Ragel.
Ragel shares part of the blame. Why did it use a strict equality check when it could have trivially done a >=?
/* generated code */
if ( ++p == pe )
goto _test_eof;
or /* generated code */
if ( ++p >= pe )
goto _test_eof;
they should have had /* generated code */
if ( ++p == pe )
goto _test_eof;
assert(p
since having servers core dumping would have drawn attention to the bug in a way that counting one byte too many and then hitting _test_eof would not.Re: Cloudflare Reverse Proxies Are Dumping Uninitialized Memory
#88Step 1) MITM the entire Internet, undermining its SSL infrastructure, build a business around it Step 2) leak cleartext from said MITM'd connections to the entire Internet I recently noted that in some ways Cloudflare are probably the only entity to have ever managed to cause more damage to popular cryptography since the 2008 Debian OpenSSL bug (thanks to their "flexible" ""SSL"" """feature"""), but now I'm certain o…
(Now I'm trawling Crunchbase to see if I can work out which investors are NSA front companies, then I'm gonna look to see what _else_ them and their partners have invested in...)
Re: Cloudflare Reverse Proxies Are Dumping Uninitialized Memory
#89Cloudflare's announcement, as it is currently worded, deserves the understatement-of-the-centry award.
Is that because, even though a very small number of pages (they claim) triggered the bug, any adjacent traffic in memory could be disclosed? That traffic could be basically anything sent through Cloudflare, it would seem.
Re: Cloudflare Reverse Proxies Are Dumping Uninitialized Memory
#90Anyone know which password manager uses Cloudflare? Just trying to figure out if I'm affected.
Thankfully it looks like it's not 1Password, who seem to use AWS CloudFront.