The DROWN Attack
21–30 of 206 posts
Re: The DROWN Attack
#22Also, I'm not seeing any guides on fixes for Dovecot yet. If you built from source or the defaults aren't working, you can use the following:
ssl_cipher_list = ALL:!LOW:!SSLv2:!EXP:!aNULL
Something more secure (blocks other vulnerabilities): ssl_cipher_list = ALL:!ADH:!LOW:!SSLv2:!SSLv3:!EXP:!aNULL:!RC4:+HIGH:+MEDIUM
The second one also covers SSlv3. You can read more on why to disable this at: http://disablessl3.com/Also, you may need to update your Exim configs as well:
tls_require_ciphers = AES128+EECDH:AES128+EDH
openssl_options = +no_sslv2 +no_sslv3
If there's anything else I'm missing, let me know.Re: The DROWN Attack
#23These marketed attacks with special logos drive me up the wall. If I ever discover one I'll give it a rude name and force everyone to look at a silly picture to go with it.
Re: The DROWN Attack
#24Re: The DROWN Attack
#25I just checked Debian versions.
Wheezy (oldstable): Much to old OpenSSL versions, according to the info site
Jessy (stable): Still to old OpenSSL version.
Stretch (testing): Still to old OpenSSL version.
Sid (unstable): The same version of OpenSSL as Stretch -- Still to old.
What to do?
Re: The DROWN Attack
#26These marketed attacks with special logos drive me up the wall. If I ever discover one I'll give it a rude name and force everyone to look at a silly picture to go with it.
Re: The DROWN Attack
#27Oh come on, it targets SSLv2. You better have a _damn_ good reason for still having SSLv2 enabled on your systems. If you didn't, you had this one coming.
Re: The DROWN Attack
#28These marketed attacks with special logos drive me up the wall. If I ever discover one I'll give it a rude name and force everyone to look at a silly picture to go with it.
Would be wonderful, you could also develop a fix and call it COCKBLOCK Edit: dear Ben, you let us down :(
(BTW: Did Adria Richards realize that "Python" as in "Monty Python" is one big Penis Joke?)
Re: The DROWN Attack
#29These marketed attacks with special logos drive me up the wall. If I ever discover one I'll give it a rude name and force everyone to look at a silly picture to go with it.
Instead of hating people marketing vulnerbilities, tackle why people-in-power don't care about vuln when communicated the old way.
Re: The DROWN Attack
#30From a pool of 11 million scans of HTTPS sites, I could only find ~265k targets with SSLv2 enabled [1]. That's 2.4%, not 25%. A breakdown of the type of target that have SSLv2 enabled would be useful to understand how they reached that number. It's possible that they scanned much much more than HTTPS on port 443, and found a lot of embedded devices with poor SSL configurations. At any rate, you should verify the conf…