Skip to content

Instantly share code, notes, and snippets.

@haani-niyaz
Last active May 23, 2020 07:13
Show Gist options
  • Save haani-niyaz/168054bacee4d19a190cdcce649825ee to your computer and use it in GitHub Desktop.
Save haani-niyaz/168054bacee4d19a190cdcce649825ee to your computer and use it in GitHub Desktop.
SSL Verification

Verify what protocol the server supports

https://www.ssllabs.com/ssltest

For www.atlassian.com:

Protocols
TLS 1.2	Yes
TLS 1.1	Yes
TLS 1.0	Yes
SSL 3	No
SSL 2	No

Verify what protcol the server supports locally

s_client  This implements a generic SSL/TLS client which can establish a transparent 
          connection to a remote server speaking SSL/TLS.

$ openssl s_client -connect www.atlassian.com:443 -tls1

What protocol your client is using

$ curl -v --tlsv1 https://www.howsmyssl.com/

Output will show something like:

Your client is using TLS 1.0...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment