Skip to content

Instantly share code, notes, and snippets.

@beezly
Last active February 17, 2021 10:37
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save beezly/267b80557900b865bc92 to your computer and use it in GitHub Desktop.
Save beezly/267b80557900b865bc92 to your computer and use it in GitHub Desktop.
Find the SSL/TLS version clients are negotiate with your SSL server. Adapt the "src port 443" part as per your requirements. Uses tshark from https://www.wireshark.org
tshark -f 'src port 443 and ether[0x42]=0x16 and ether[0x47]=0x02' -T fields -e ip.dst_host -e ssl.handshake.version
@beezly
Copy link
Author

beezly commented Oct 14, 2014

The SSL/TLS version will be written as hex. 0x303 is TLS 1.2, 0x302 is TLS 1.1, 0x301 is TLS 1.0, 0x300 is SSL 3.0

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