Fix false positive in POODLE scanner

If SSL is false somehow.
bug/bundler_fix
William Vu 2015-04-28 14:19:48 -05:00
parent 1a7a5c2977
commit 28e661e204
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ class Metasploit3 < Msf::Auxiliary
vprint_status("#{peer} connected and fingerprinted: #{fp}")
# TODO: Interrogate the connection itself to see what version
# was used. Where that actually lives is eluding me. :/
if datastore['SSLVersion'] == 'SSL3'
if datastore['SSL'] && datastore['SSLVersion'] == 'SSL3'
print_good("#{peer} accepts SSLv3")
report_poodle_vuln(ip)
end