Created
February 6, 2025 16:14
-
-
Save cparkinson/8eee306020bdf42cc3f442f450b1d4bb to your computer and use it in GitHub Desktop.
Check TLS cipher suites
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
//edit domain.com | |
openssl ciphers -v | awk '{print $1}' | while read cipher; do echo Testing $cipher...; openssl s_client -connect domain.com:443 -cipher $cipher </dev/null 2>&1 | grep -E "Cipher|handshake"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment