From ca4a0b23f7b3a349c09db968b87d21f522d7cb49 Mon Sep 17 00:00:00 2001 From: Chad Brigance Date: Sun, 9 May 2021 09:46:57 +0000 Subject: [PATCH] fixed minor bug with json output for TLS1.1 #1884 --- testssl.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testssl.sh b/testssl.sh index 249e921..c8fe2e5 100755 --- a/testssl.sh +++ b/testssl.sh @@ -5186,7 +5186,7 @@ run_protocols() { add_tls_offered tls1_1 no if [[ -z $latest_supported ]]; then outln - fileout "$jsonID" "INFO" "is not offered" # neither good or bad + fileout "$jsonID" "INFO" "not offered" # neither good or bad else prln_svrty_critical " -- connection failed rather than downgrading to $latest_supported_string" fileout "$jsonID" "CRITICAL" "connection failed rather than downgrading to $latest_supported_string" @@ -5222,7 +5222,7 @@ run_protocols() { fileout "$jsonID" "WARN" "TLS downgraded to STARTTLS plaintext" ;; 4) out "likely not offered, " - fileout "$jsonID" "INFO" "is not offered" + fileout "$jsonID" "INFO" "not offered" add_tls_offered tls1_1 no pr_warning "received 4xx/5xx after STARTTLS handshake"; outln "$debug_recomm" fileout "$jsonID" "WARN" "received 4xx/5xx after STARTTLS handshake${debug_recomm}"