Skip to content

Instantly share code, notes, and snippets.

@lyoshenka
Created October 30, 2014 14:54
Show Gist options
  • Save lyoshenka/5a92416407bf23d0c037 to your computer and use it in GitHub Desktop.
Save lyoshenka/5a92416407bf23d0c037 to your computer and use it in GitHub Desktop.
Checks what SSL ciphers a server supports.
#!/usr/bin/env bash
# source: https://superuser.com/questions/109213/is-there-a-tool-that-can-test-what-ssl-tls-cipher-suites-a-particular-website-of
# OpenSSL requires the port number.
SERVER=hostname:443
DELAY=1
ciphers=$(openssl ciphers 'ALL:eNULL' | sed -e 's/:/ /g')
echo Obtaining cipher list from $(openssl version).
for cipher in ${ciphers[@]}; do
echo -n Testing $cipher...
result=$(echo -n | openssl s_client -cipher "$cipher" -connect $SERVER 2>&1)
if [[ "$result" =~ "Cipher is ${cipher}" || "$result" =~ "Cipher :" ]] ; then
echo YES
else
if [[ "$result" =~ ":error:" ]] ; then
error=$(echo -n $result | cut -d':' -f6)
echo NO \($error\)
else
echo UNKNOWN RESPONSE
echo $result
fi
fi
sleep $DELAY
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment