Earlier quoted context omitted.
Then a bunch of big companies announce they'll use another browser to be able to keep using it
Another browser beside Chrome, Firefox and IE? OK, so Symantec announces that they will only use Opera. Even then, they have to deal with their customers, website operators who need a certificate trusted by the big 3 browsers, leaving. In fact, now that Let's Encrypt certificates are free, it seems like this is the Symantec CA's worst nightmare.
The DROWN Attack
201–206 of 206 posts
Re: The DROWN Attack
#202Is there anyone developing an exploit for this attack? You'll need a vulnerable openssl version to test. After major Linux distros releasing the path, it'll be difficult to obtain the vulnerable openssl. Timemachine (debian) is a tool that constructs a Docker image of a Debian base system. You can choose a Debian distribution and a date in the past. Then install any (vulnerable) package of your choice for experiment.…
Re: The DROWN Attack
#203The vulnerability here is tricky to exploit but actually simple to describe. There's a padding oracle in the form of RSA used by both TLS and SSLv2; by repeatedly sending permuted versions of a ciphertext to an SSLv2 server, you can gradually discover the plaintext†. Both SSLv2 and TLS have countermeasures for this attack. But SSLv2's countermeasures are sabotaged by the crappy ciphers it also supports. In both TLS a…
Re: The DROWN Attack
#204Earlier quoted context omitted.
I think developers of elliptic curve crypto overestimate their ability too. Avoiding side channels in RSA is easier than avoiding them in ECC - fewer moving parts.
In my experience, this is how developers see crypto: RSA: "I learned that as an undergrad. It's just multiplication, I'll use GMP!" ECC: "Whoa what the hell is this? I better use a library." These are the same developers who ask on StackOverflow how to decrypt MD5, of course.
Rainbow tables. Duh!
Re: The DROWN Attack
#205Earlier quoted context omitted.
In my experience, this is how developers see crypto: RSA: "I learned that as an undergrad. It's just multiplication, I'll use GMP!" ECC: "Whoa what the hell is this? I better use a library." These are the same developers who ask on StackOverflow how to decrypt MD5, of course.
> These are the same developers who ask on StackOverflow how to decrypt MD5, of course. Rainbow tables. Duh!
Re: The DROWN Attack
#206Earlier quoted context omitted.
> These are the same developers who ask on StackOverflow how to decrypt MD5, of course. Rainbow tables. Duh!
That's not decryption.
(Though I wonder if you can make a pedantic argument, that if the domain of your one-way function is suitably restricted (eg to passwords humans actually come up with) they do become bijective.)