Quick cleanup for sap_icm_urlscan

bug/bundler_fix
William Vu 2014-05-19 09:21:26 -05:00
commit a30d6b1f2d
No known key found for this signature in database
GPG Key ID: E761DCB4C1629024
1 changed files with 2 additions and 2 deletions

View File

@ -115,9 +115,9 @@ class Metasploit3 < Msf::Auxiliary
when 404
# Do not return by default, only display in verbose mode
vprint_status("#{full_url} - not found (#{res.code})")
when 400,500
when 400, 500
print_status("#{full_url} - produced a server error (#{res.code})")
when 301, 302,
when 301, 302
print_good("#{full_url} - redirected (#{res.code}) to #{res.redirection} (not following)")
@valid_urls << full_url << "\n"
when 307