Merge pull request #1342 from dcooper16/bad_version_negotiation

Warn if bad version negotiation detected
This commit is contained in:
Dirk Wetter 2019-10-17 09:22:08 +02:00 committed by GitHub
commit a8a938470c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -17905,6 +17905,9 @@ determine_optimal_sockets_params() {
sslv2_sockets
[[ $? -eq 3 ]] && all_failed=false && add_tls_offered ssl2 yes
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
}