Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Boelen <michael.boelen@cisofy.com>2019-06-24 16:40:18 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2019-06-24 16:40:18 +0300
commitd0377c563dd2e69da3c86b475237409d44809eb8 (patch)
treec1bf0b2024b95249b6ddbce3b6b6b15781fa7b48
parent94e0a4e40dd6bc9c21415cfb1819d3f68b126de3 (diff)
Added TLSv1 as weak protocol (nginx)
-rw-r--r--include/functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions b/include/functions
index 35cb6b00..6f067761 100644
--- a/include/functions
+++ b/include/functions
@@ -2009,7 +2009,7 @@
for ITEM in ${VALUE}; do
LogText "Result: found protocol ${ITEM}"
case ${ITEM} in
- "sslv2" | "sslv3")
+ "sslv2" | "sslv3" | "tlsv1")
NGINX_WEAK_SSL_PROTOCOL_FOUND=1
;;
esac