From 5c73a23cfef57987d5f9d1d1e487d25cdc5e309b Mon Sep 17 00:00:00 2001 From: Dirk Wetter Date: Sat, 25 Apr 2020 11:06:35 +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 8dc3141..940f491 100755 --- a/testssl.sh +++ b/testssl.sh @@ -6392,12 +6392,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