Skip to content

Instantly share code, notes, and snippets.

@guerzon
Last active December 18, 2019 03:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guerzon/3ba8d80e1acfeffa11714a82ece4103e to your computer and use it in GitHub Desktop.
Save guerzon/3ba8d80e1acfeffa11714a82ece4103e to your computer and use it in GitHub Desktop.
Useful script to test cipher suite support of services running SSL/TLS.
#!/usr/bin/env bash
# Usage: ./verify_ciphers.sh IP:PORT
# Credits: http://superuser.com/a/224263/204745
# OpenSSL requires the port number.
SERVER=$1
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" =~ ":error:" ]] ; then
error=$(echo -n $result | cut -d':' -f6)
echo NO \($error\)
else
if [[ "$result" =~ "Cipher is ${cipher}" || "$result" =~ "Cipher :" ]] ; then
echo YES
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