[HTTP-6710] Show SSLv3 as weak protocol

This commit is contained in:
mboelen 2016-04-27 16:36:24 +02:00
parent d6fa2bbd4c
commit eb0206198a
1 changed files with 1 additions and 1 deletions

View File

@ -504,7 +504,7 @@
if [ ${NGINX_SSL_PROTOCOLS} -eq 1 ]; then
Display --indent 8 --text "- Protocols configured" --result "YES" --color GREEN
FIND=`${GREPBINARY} "ssl_protocols" ${NGINX_CONF_LOCATION} | ${GREPBINARY} "SSLv[12]"`
FIND=`${GREPBINARY} "ssl_protocols" ${NGINX_CONF_LOCATION} | ${GREPBINARY} "SSLv[123]"`
if [ "${FIND}" = "" ]; then
Display --indent 10 --text "- Insecure protocols found" --result "NO" --color GREEN
else