Skip to content

Instantly share code, notes, and snippets.

//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