From 4defa95d0bd9ce9d754497b9ae55308cf5659c51 Mon Sep 17 00:00:00 2001 From: Dirk Wetter Date: Sat, 25 Apr 2020 11:12:36 +0200 Subject: [PATCH] Negotiated protocol showed no warning for TLS 1.1/1.0 .. whereas the protocol section did that. This fixes the inconsistency. --- testssl.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/testssl.sh b/testssl.sh index 0fd691b..eedbb3a 100755 --- a/testssl.sh +++ b/testssl.sh @@ -6419,12 +6419,12 @@ run_server_preference() { fileout "$jsonID" "OK" "Default protocol TLS1.2" ;; *TLSv1.1) - prln_svrty_good $default_proto - fileout "$jsonID" "OK" "Default protocol TLS1.1" + prln_svrty_low $default_proto + fileout "$jsonID" "LOW" "Default protocol TLS1.1" ;; *TLSv1) - outln $default_proto - fileout "$jsonID" "INFO" "Default protocol TLS1.0" + prln_svrty_low $default_proto + fileout "$jsonID" "LOW" "Default protocol TLS1.0" ;; *SSLv2) prln_svrty_critical $default_proto