• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Poodle and port 8843

luc

New Pleskian
Hi,
scenario: Plesk 12 on centos with nginx on a proxmox openVZ containers

I applied the changes suggested by http://kb.odin.com/en/123160, later I get the following response:

[root@ns403 ~]# for i in `echo 21 587 443 465 7081 8443 993 995 `; do /bin/sh /root/poodle.sh 127.0.0.1 $i; done
127.0.0.1:21 - Not vulnerable. Failed to establish SSLv3 connection.
127.0.0.1:587 - Not vulnerable. Failed to establish SSL connection.
127.0.0.1:443 - Not vulnerable. Failed to establish SSL connection.
127.0.0.1:465 - Vulnerable! SSLv3 connection established using SSLv3/ECDHE-RSA-AES256-SHA
127.0.0.1:7081 - Not vulnerable. Failed to establish SSLv3 connection.
127.0.0.1:8443 - Vulnerable! SSLv3 connection established using SSLv3/ECDHE-RSA-AES256-SHA
127.0.0.1:993 - Not vulnerable. Failed to establish SSLv3 connection.
127.0.0.1:995 - Not vulnerable. Failed to establish SSLv3 connection.

What I miss?

Any tips?
thx
 
Hi luc,

you made nothing wrong, but ignore the fact that some ciphers are defined as SSLv3 ciphers, even that they are TLSv1 - ciphers.
Please use the following command to list all TLSv1 - ciphers:

openssl ciphers -v 'TLSv1' | sort

You will now see, that these are SSLv3 AND TLSv1 - ciphers. The Poodle - Test - script is not at all perfect and only looks for SSLv3 - ciphers, as you can see in the code:
HTML:
...
protocol=${3:-ssl3}
...

Please use a decent test as at: https://www.ssllabs.com/ssltest/ to be sure, if your server is vulnerable or not.
 
Back
Top