Azurel
Silver Pleskian
In nginx /etc/nginx/plesk.conf.d/server.conf I found
Why? See here: http://disablessl3.com/ or here https://blog.qualys.com/ssllabs/2014/10/15/ssl-3-is-dead-killed-by-the-poodle-attack
Maybe that helps here too:
https://mozilla.github.io/server-side-tls/ssl-config-generator/
SSLLabs give you Grade C for using SSLv3
From Apache Config:
From nginx Config:
SOLUTION:
http://kb.odin.com/en/123160
for Plesk 12.5
ssl_protocols SSLv2 SSLv3 TLSv1 TLSv1.1 TLSv1.2;
Why? See here: http://disablessl3.com/ or here https://blog.qualys.com/ssllabs/2014/10/15/ssl-3-is-dead-killed-by-the-poodle-attack
Maybe that helps here too:
https://mozilla.github.io/server-side-tls/ssl-config-generator/
SSLLabs give you Grade C for using SSLv3
This server is vulnerable to the POODLE attack. If possible, disable SSL 3 to mitigate. Grade capped to C.
From Apache Config:
Default: SSLProtocol all -SSLv3 (up to 2.4.16: all)
From nginx Config:
Default: ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
SOLUTION:
http://kb.odin.com/en/123160
for Plesk 12.5
For all sites in Plesk 12.0 for Linux:
# mysqldump -uadmin -p`cat /etc/psa/.psa.shadow` psa > psa_backup.sql
# mysql -uadmin -p`cat /etc/psa/.psa.shadow` psa
mysql> insert into misc values('disablesslv3', 'true');
Then, reconfigure Apache and Nginx:
# /usr/local/psa/admin/bin/httpdmng --reconfigure-all
Last edited: