Cách kiểm tra một server dùng giao thức SSL 2.0, 3.0 hay TLS 1.0
Lệnh để kiểm tra một server có hỗ trợ phên bản SSL/TLS hay không. Từ một shell (Linux) hoặc dấu nhắc lệnh (Windows, yêu cầu đã cài đặt OpenSSL):
Cho SSL 2.0 (không an toàn, nên disable SSL 2.0):
openssl s_client -connect yourserver.com:443 -ssl2
If that succeeds, you have SSLv2 enabled.
Cho SSL 3.0 (an toàn):
openssl s_client -connect yourserver.com:443 -ssl3
If that succeeds, you have SSLv3 enabled.
Cho TLS 1.0 (an toàn):
openssl s_client -connect yourserver.com:443 -tls1
If that succeeds, you have TLSv1 enabled.