mirror of
https://github.com/mozilla/cipherscan.git
synced 2024-11-16 20:03:41 +01:00
commit
17dcd0dc05
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user