POODLE vulnerability
Posted: Tue Oct 21, 2014 2:10 pm
POODLE: http://googleonlinesecurity.blogspot.co ... sl-30.html
https://www.us-cert.gov/ncas/alerts/TA14-290A
I believe Unreal IRCd is vulnerable because SSLv3 is supported. The fix is to disable SSLv3 and just use TLS 1+. Is this possible (3.2.10.4)?
Test with -
-tls1 is also a switch
https://www.us-cert.gov/ncas/alerts/TA14-290A
I believe Unreal IRCd is vulnerable because SSLv3 is supported. The fix is to disable SSLv3 and just use TLS 1+. Is this possible (3.2.10.4)?
Test with -
Code: Select all
$ echo | openssl s_client -connect irc.unrealircd.com:6697 -ssl3 2>&1 | grep New
New, TLSv1/SSLv3, Cipher is AES256-SHA
# Successful SSL connection ^
$ echo | openssl s_client -connect irc.unrealircd.com:6697 -ssl2 2>&1 | grep New
New, (NONE), Cipher is (NONE)
# Unsuccessful (SSLv2 is not supported, which is good) ^