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.
1 parent a823ca6 commit 9a27984Copy full SHA for 9a27984
modules/exploits/windows/iis/iis_webdav_upload_asp.rb
@@ -149,7 +149,11 @@ def exploit
149
end
150
151
if (res.code < 200 or res.code >= 300)
152
- print_error("Deletion failed on #{path} [#{res.code} #{res.message}]")
+ # Changed this to a warning, because red is scary and if this aprt fails,
153
+ # honestly it's not that bad. In most cases this is probably expected anyway
154
+ # because by default we're using IWAM_*, which doesn't give us a lot of
155
+ # freedom to begin with.
156
+ print_warning("Deletion failed on #{path} [#{res.code} #{res.message}]")
157
return
158
159
0 commit comments