• Hi, Pleskians! We are running a UX testing of our upcoming product intended for server management and monitoring.
    We would like to invite you to have a call with us and have some fun checking our prototype. The agenda is pretty simple - we bring new design and some scenarios that you need to walk through and succeed. We will be watching and taking insights for further development of the design.
    If you would like to participate, please use this link to book a meeting. We will sent the link to the clickable prototype at the meeting.
  • (Plesk for Windows):
    MySQL Connector/ODBC 3.51, 5.1, and 5.3 are no longer shipped with Plesk because they have reached end of life. MariaDB Connector/ODBC 64-bit 3.2.4 is now used instead.
  • Our UX team believes in the in the power of direct feedback and would like to invite you to participate in interviews, tests, and surveys.
    To stay in the loop and never miss an opportunity to share your thoughts, please subscribe to our UX research program. If you were previously part of the Plesk UX research program, please re-subscribe to continue receiving our invitations.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.

Resolved Why SSLv2 and SSLv3?

Azurel

Silver Pleskian
In nginx /etc/nginx/plesk.conf.d/server.conf I found
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:
Hi Azurel,

not all SSLv2/SSLv3 - protocols have a protocol weaknesses, that's why it is very much recommended and wise, to define your ciphers lists carefully!
If you intend to remove all SSLv3 ciphers, you remove as well some TLSv1 ciphers and if you remove all SSLv2 ciphers as well, you will now only support TLSv1.2 - which is a bad idea, because you will experience quite a lot of issues now. ;)

Pls. read more about ciphers and it's usage, as for example at: => https://www.openssl.org/docs/manmaster/apps/ciphers.html
 
Back
Top