2
0
mirror of https://github.com/mozilla/cipherscan.git synced 2024-09-28 23:53:41 +02:00

Merge pull request #138 from sunshuzhou/patch-1

Update cipherscan
This commit is contained in:
Hubert Kario 2017-05-03 14:57:32 +02:00 committed by GitHub
commit 17dcd0dc05

View File

@ -419,14 +419,17 @@ parse_openssl_output() {
# renegotiation support # renegotiation support
if [[ $line =~ Secure\ Renegotiation\ IS\ supported ]]; then if [[ $line =~ Secure\ Renegotiation\ IS\ supported ]]; then
current_renegotiation="secure" current_renegotiation="secure"
continue
fi fi
if [[ $line =~ Secure\ Renegotiation\ IS\ NOT\ supported ]]; then if [[ $line =~ Secure\ Renegotiation\ IS\ NOT\ supported ]]; then
current_renegotiation="insecure" current_renegotiation="insecure"
continue
fi fi
# compression settings # compression settings
if [[ $line =~ Compression:\ (.*) ]]; then if [[ $line =~ Compression:\ (.*) ]]; then
current_compression="${BASH_REMATCH[1]}" current_compression="${BASH_REMATCH[1]}"
continue
fi fi
# extract the signing algorithm used in TLSv1.2 ephemeral kex # extract the signing algorithm used in TLSv1.2 ephemeral kex