Merge pull request #428 from dcooper16/determine_optimal_proto_ssl2_fix
SSLv2 fixes for determine_optimal_proto()
This commit is contained in:
commit
48f2dc20a6
12
testssl.sh
12
testssl.sh
|
@ -7812,7 +7812,7 @@ sclient_auth() {
|
||||||
#
|
#
|
||||||
determine_optimal_proto() {
|
determine_optimal_proto() {
|
||||||
local all_failed
|
local all_failed
|
||||||
local addcmd=""
|
local sni=""
|
||||||
|
|
||||||
#TODO: maybe query known openssl version before this workaround. 1.0.1 doesn't need this
|
#TODO: maybe query known openssl version before this workaround. 1.0.1 doesn't need this
|
||||||
|
|
||||||
|
@ -7830,8 +7830,9 @@ determine_optimal_proto() {
|
||||||
done
|
done
|
||||||
debugme echo "STARTTLS_OPTIMAL_PROTO: $STARTTLS_OPTIMAL_PROTO"
|
debugme echo "STARTTLS_OPTIMAL_PROTO: $STARTTLS_OPTIMAL_PROTO"
|
||||||
else
|
else
|
||||||
for OPTIMAL_PROTO in '' -tls1_2 -tls1 -ssl3 -tls1_1 -ssl2 ''; do
|
for OPTIMAL_PROTO in '' -tls1_2 -tls1 -ssl3 -tls1_1 -ssl2; do
|
||||||
$OPENSSL s_client $OPTIMAL_PROTO $BUGS -connect "$NODEIP:$PORT" -msg $PROXY $SNI </dev/null >$TMPFILE 2>>$ERRFILE
|
[[ "$OPTIMAL_PROTO" =~ ssl ]] && sni="" || sni=$SNI
|
||||||
|
$OPENSSL s_client $OPTIMAL_PROTO $BUGS -connect "$NODEIP:$PORT" -msg $PROXY $sni </dev/null >$TMPFILE 2>>$ERRFILE
|
||||||
if sclient_auth $? $TMPFILE; then
|
if sclient_auth $? $TMPFILE; then
|
||||||
all_failed=1
|
all_failed=1
|
||||||
break
|
break
|
||||||
|
@ -7839,6 +7840,11 @@ determine_optimal_proto() {
|
||||||
all_failed=0
|
all_failed=0
|
||||||
done
|
done
|
||||||
debugme echo "OPTIMAL_PROTO: $OPTIMAL_PROTO"
|
debugme echo "OPTIMAL_PROTO: $OPTIMAL_PROTO"
|
||||||
|
if [[ "$OPTIMAL_PROTO" == "-ssl2" ]]; then
|
||||||
|
pr_magentaln "$NODEIP:$PORT appears to only support SSLv2."
|
||||||
|
ignore_no_or_lame " Type \"yes\" to accept some false negatives or positives "
|
||||||
|
[[ $? -ne 0 ]] && exit -2
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
grep -q '^Server Temp Key' $TMPFILE && HAS_DH_BITS=true # FIX #190
|
grep -q '^Server Temp Key' $TMPFILE && HAS_DH_BITS=true # FIX #190
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue