Merge pull request #635 from dcooper16/run_protocols_bugfix

run_protocols() bug fix
This commit is contained in:
Dirk Wetter 2017-02-15 19:44:53 +01:00 committed by GitHub
commit a973386c0a

View File

@ -4505,8 +4505,9 @@ run_protocols() {
add_tls_offered "tls1_2"
;; # GCM cipher in TLS 1.2: very good!
1)
pr_svrty_mediumln "not offered"
if ! "$using_sockets" || ! "$EXPERIMENTAL" || [[ -z $latest_supported ]]; then
pr_svrty_medium "not offered"
if ! "$using_sockets" || [[ -z $latest_supported ]]; then
outln
fileout "tls1_2" "MEDIUM" "TLSv1.2 is not offered" # no GCM, penalty
else
pr_svrty_criticalln " -- connection failed rather than downgrading to $latest_supported_string"