openssl s_client
RFC 8996 (2021) formally deprecates TLS 1.0 and 1.1.
TLS is designed to defend against a network adversary who can:
TLS provides:
# Inspect a TLS 1.3 connection openssl s_client -connect google.com:443 -tls1_3 # Compare with TLS 1.2 openssl s_client -connect google.com:443 -tls1_2 # Show full handshake trace openssl s_client -connect google.com:443 -msg 2>&1 | head -60
Look for: Protocol: TLSv1.3, cipher suite, certificate chain depth.
Protocol: TLSv1.3
Find 3 websites using TLS 1.2 and 3 using TLS 1.3 using openssl s_client.
For each, record:
Write 2–3 sentences on what you observe about which servers are still on TLS 1.2 and what types of organizations they tend to be.