Skip to content

Instantly share code, notes, and snippets.

@erronjason
Last active August 29, 2015 14:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erronjason/ae9c95eb2ea455513734 to your computer and use it in GitHub Desktop.
Save erronjason/ae9c95eb2ea455513734 to your computer and use it in GitHub Desktop.
Check site for SSLv3
# This is a bash one-liner, where example.com is the site to test against for the currently vulnerable SSLv3 (CVE-2014-3566)
# Requires nmap to be installed.
nmap --script ssl-enum-ciphers -p 443 example.com | grep -A 1 SSLv3: | if grep -q "No supported ciphers found"; then echo -e "\e[32mSecure\e[39m"; else echo -e "\e[31m\e[1mVulnerable\e[39m\e[0m"; fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment