From c23d1ba64a5080420d61d566b6390f3516d4d6fb Mon Sep 17 00:00:00 2001 From: Sun Shuzhou Date: Tue, 2 May 2017 21:38:03 +0800 Subject: [PATCH 1/2] Update cipherscan --- cipherscan | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cipherscan b/cipherscan index feac6b1..a4d74e1 100755 --- a/cipherscan +++ b/cipherscan @@ -419,9 +419,11 @@ parse_openssl_output() { # renegotiation support if [[ $line =~ Secure\ Renegotiation\ IS\ supported ]]; then current_renegotiation="secure" + continue fi if [[ $line =~ Secure\ Renegotiation\ IS\ NOT\ supported ]]; then current_renegotiation="insecure" + continue fi # compression settings From 2204ec21e9e3193b8d34b545c8bdff6f04c5ba02 Mon Sep 17 00:00:00 2001 From: Sun Shuzhou Date: Wed, 3 May 2017 09:03:32 +0800 Subject: [PATCH 2/2] Update cipherscan --- cipherscan | 1 + 1 file changed, 1 insertion(+) diff --git a/cipherscan b/cipherscan index a4d74e1..4035511 100755 --- a/cipherscan +++ b/cipherscan @@ -429,6 +429,7 @@ parse_openssl_output() { # compression settings if [[ $line =~ Compression:\ (.*) ]]; then current_compression="${BASH_REMATCH[1]}" + continue fi # extract the signing algorithm used in TLSv1.2 ephemeral kex