Merge pull request #1342 from dcooper16/bad_version_negotiation
Warn if bad version negotiation detected
This commit is contained in:
commit
a8a938470c
|
@ -17905,6 +17905,9 @@ determine_optimal_sockets_params() {
|
||||||
sslv2_sockets
|
sslv2_sockets
|
||||||
[[ $? -eq 3 ]] && all_failed=false && add_tls_offered ssl2 yes
|
[[ $? -eq 3 ]] && all_failed=false && add_tls_offered ssl2 yes
|
||||||
fi
|
fi
|
||||||
|
if [[ -n "$OPTIMAL_SOCKETS_PROTO" ]]; then
|
||||||
|
prln_warning " $NODEIP:$PORT doesn't seem to handle version negotiation correctly. This may lead to some false positives and/or false negatives."
|
||||||
|
fi
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue