Skip to content

Instantly share code, notes, and snippets.

@corysolovewicz
Created July 31, 2019 22:58
Show Gist options
  • Save corysolovewicz/4e8500a90c8cb0b887914c0e4ede0918 to your computer and use it in GitHub Desktop.
Save corysolovewicz/4e8500a90c8cb0b887914c0e4ede0918 to your computer and use it in GitHub Desktop.
Testing for TLS Configuration Flaws - get ciphers
# check using openssl s_client
openssl s_client -connect <host>:443 -cipher HIGH
# example
openssl s_client -connect google.com:443 -cipher HIGH
# check using nmap ssl-enum-ciphers
nmap -sV --script ssl-enum-ciphers -p 443 <host>
# example
nmap -sV --script ssl-enum-ciphers -p 443 google.com
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment