How can I check if my server is using ssl 3?
When I run openssl version command I get this.
OpenSSL 1.0.1 14 Mar 2012
Thanks.
How can I check if my server is using ssl 3?
When I run openssl version command I get this.
OpenSSL 1.0.1 14 Mar 2012
Thanks.
What server are you talking about? If it's Apache or any other web-server you may use curl:
curl -v3 https://yourwebsite.com
This will force curl to use SSLv3. If request succeeds then server supports SSLv3.