Check site for SSLv3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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