Skip to content

Commit e4bbd6b

Browse files
committed
Set POODLE var when exiting run_ssl_poodle()
... so that run_tls_fallback_scsv() doesn't exit with a warning. This fixes #2708 .
1 parent a43261f commit e4bbd6b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

testssl.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17954,10 +17954,12 @@ run_ssl_poodle() {
1795417954
pr_bold " POODLE, SSL"; out " ($cve) "
1795517955

1795617956
if "$TLS13_ONLY" || [[ $(has_server_protocol ssl3) -eq 1 ]]; then
17957-
# one condition should normally suffice but we don't know when run_poddle() was called
17957+
# one condition should normally suffice but we don't know when run_poodle() was called
1795817958
pr_svrty_best "not vulnerable (OK)"
1795917959
outln ", no SSLv3 support"
1796017960
fileout "$jsonID" "OK" "not vulnerable, no SSLv3" "$cve" "$cwe"
17961+
# otherwise we'll get a non-zero return code and a message 'Rerun including POODLE SSL check' @ TLS_FALLBACK_SCSV, see #2708
17962+
POODLE=1
1796117963
return 0
1796217964
fi
1796317965

0 commit comments

Comments
 (0)