Skip to content

Commit 28e661e

Browse files
committed
Fix false positive in POODLE scanner
If SSL is false somehow.
1 parent 1a7a5c2 commit 28e661e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/auxiliary/scanner/http/ssl_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def run_host(ip)
5959
vprint_status("#{peer} connected and fingerprinted: #{fp}")
6060
# TODO: Interrogate the connection itself to see what version
6161
# was used. Where that actually lives is eluding me. :/
62-
if datastore['SSLVersion'] == 'SSL3'
62+
if datastore['SSL'] && datastore['SSLVersion'] == 'SSL3'
6363
print_good("#{peer} accepts SSLv3")
6464
report_poodle_vuln(ip)
6565
end

0 commit comments

Comments
 (0)