Earlier quoted context omitted.
That protocols without security proofs can survive in the real world, and protocols with security proofs still fall to implementation bugs, and that if you were going to bet on incidence of protocol design flaws vs. implementation flaws, the safe bet is on implementation flaws.
The level of civility in this thread is great, but I would pay money to see a DEF CON panel debate between you two where you each had to take a shot every 8 minutes. We could get Mikko Hypponen to moderate and pour shots!
Google disables compression for OpenSSL in Chrome - SSL exploit coming?
91–100 of 137 posts
Re: Google disables compression for OpenSSL in Chrome - SSL exploit coming?
#92Doesn't look like this has anything to do with an exploit. It is because some older web servers who don't support TLS also don't support compression. See: http://code.google.com/p/chromium/issues/detail?id=31628
No, I doubt that something closed in early 2010 has much to do with a new patch that has a rationale disabled from public viewing which implies it's a security emergency.
Re: Google disables compression for OpenSSL in Chrome - SSL exploit coming?
#93Earlier quoted context omitted.
You need three things: 1. To know the format of cookies used for the web site you are targetting. Specifically, whatever cookie contains authentication. 2. The ability to injection a request to the target web server while someone is connected (such as with JavaScript, an XSS, or plug-in). 3. Ability to monitor the SSL connection is it is transported across TCP. Would have been fun if they called this the CPE1704TKS a…
Are there credible situations where you would be able to do (2) but not able to simply read the cookie from the DOM and send it to an attacker controlled website?
edit: tptacek is absolutely right; there isn't a way to defend against this in application code. All you can do is turn off TLS compression. This is NOT by any means the only approach, it's just the most obvious one.
Re: Google disables compression for OpenSSL in Chrome - SSL exploit coming?
#94Earlier quoted context omitted.
Is my understanding correct that the attack described there requires all of 1. cookies associated with the target, 2. the ability to monitor the length of requests to the target, and 3. the ability to send requests to the target (e.g. JavaScript injection, malicious website)? I guess this is actually an instance where those Hollywood "guess the password one character at a time" animations would make sense.
You also need the client and server to both support TLS compression. But there aren't any major sites (that I know of) which do support TLS compression.
Re: Google disables compression for OpenSSL in Chrome - SSL exploit coming?
#95Re: Google disables compression for OpenSSL in Chrome - SSL exploit coming?
#96Does the attack apply to SPDY as well?
Re: Google disables compression for OpenSSL in Chrome - SSL exploit coming?
#97Earlier quoted context omitted.
Your perspective on HTTPS/TLS is that it has a history of vulnerabilities because it is poorly designed. My perspective on HTTPS/TLS is that it has a history of vulnerabilities because it is the most carefully studied cryptosystem in human history. I agree to disagree with you on this.
My perspective is that we know how to design protocols which are provably secure. Your perspective is... I'm not quite sure, actually. Maybe you just don't believe in mathematical proofs? As you say, agree to disagree -- but I'm not going to stop pointing and laughing every time a new SSL/TLS vulnerability comes out. :-)
Re: Google disables compression for OpenSSL in Chrome - SSL exploit coming?
#98Earlier quoted context omitted.
Are there credible situations where you would be able to do (2) but not able to simply read the cookie from the DOM and send it to an attacker controlled website?
An attacker can build a hidden form that submits to a URL at the victim site, and submit it repeatedly using javascript. Alternatively an attacker could put the test content in the URL (we don't care if it 404s), which would work just as well and allow them to use a series of script-free pages full of images. edit: tptacek is absolutely right; there isn't a way to defend against this in application code. All you can…
Re: Google disables compression for OpenSSL in Chrome - SSL exploit coming?
#99Earlier quoted context omitted.
My perspective is that we know how to design protocols which are provably secure. Your perspective is... I'm not quite sure, actually. Maybe you just don't believe in mathematical proofs? As you say, agree to disagree -- but I'm not going to stop pointing and laughing every time a new SSL/TLS vulnerability comes out. :-)
Have there been any proposed contenders to TLS/SSL?
Re: Google disables compression for OpenSSL in Chrome - SSL exploit coming?
#100Yes. See: http://security.stackexchange.com/a/19914
This attack procedure applies only for dictionary based compressions. Correct? What would be the procedure if you use bzip2 (which is based on Burrows-Wheeler transformation) compression?