Skip to content

Instantly share code, notes, and snippets.

@cparkinson
Created February 6, 2025 16:14
Show Gist options
  • Save cparkinson/8eee306020bdf42cc3f442f450b1d4bb to your computer and use it in GitHub Desktop.
Save cparkinson/8eee306020bdf42cc3f442f450b1d4bb to your computer and use it in GitHub Desktop.
Check TLS cipher suites
//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