Report when nothing is rescued

bug/bundler_fix
jvazquez-r7 2015-01-09 22:58:19 -06:00
parent 81406defed
commit 38c36b49fb
1 changed files with 5 additions and 5 deletions

View File

@ -54,7 +54,8 @@ class Metasploit3 < Msf::Auxiliary
if e.to_s =~ /^ORA-12170:\s/
print_error("#{datastore['RHOST']}:#{datastore['RPORT']} Connection timed out")
break
elsif not e
end
else
report_auth_info(
:host => "#{datastore['RHOST']}",
:port => "#{datastore['RPORT']}",
@ -67,5 +68,4 @@ class Metasploit3 < Msf::Auxiliary
end
end
end
end
end