We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bc64e47 + dc0e649 commit a30d6b1Copy full SHA for a30d6b1
modules/auxiliary/scanner/sap/sap_icm_urlscan.rb
@@ -115,9 +115,9 @@ def check_url(url)
115
when 404
116
# Do not return by default, only display in verbose mode
117
vprint_status("#{full_url} - not found (#{res.code})")
118
- when 400,500
+ when 400, 500
119
print_status("#{full_url} - produced a server error (#{res.code})")
120
- when 301, 302,
+ when 301, 302
121
print_good("#{full_url} - redirected (#{res.code}) to #{res.redirection} (not following)")
122
@valid_urls << full_url << "\n"
123
when 307
0 commit comments