Skip to content

Commit 0df3e17

Browse files
committed
Fix the issue in MS2132 where OWA_LOGIN doesn't continue on connection error.
The possibility of temporary connnection disruption means this module should keep trying other user/pass pairs upon error.
1 parent 3640e87 commit 0df3e17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/auxiliary/scanner/http/owa_login.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ def try_user_pass(opts)
195195

196196
if not res
197197
print_error("#{msg} HTTP Connection Error, Aborting")
198-
return :abort
198+
return
199199
end
200200

201201
if action.name != "OWA_2013" and res.get_cookies.empty?

0 commit comments

Comments
 (0)