Created
July 31, 2019 22:58
-
-
Save corysolovewicz/4e8500a90c8cb0b887914c0e4ede0918 to your computer and use it in GitHub Desktop.
Testing for TLS Configuration Flaws - get ciphers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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