Skip to content

Commit 0646b5c

Browse files
committed
Land rapid7#7606, OWA_LOGIN should continue on connection errors.
Fixex MS-2132.
2 parents 3640e87 + 9f47843 commit 0646b5c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/msf/core/exploit/http/client.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ def send_request_cgi(opts={}, timeout = 20)
366366
print_line('#' * 20)
367367
print_line(res.to_s)
368368
end
369-
369+
disconnect(c)
370370
res
371371
rescue ::Errno::EPIPE, ::Timeout::Error => e
372372
print_line(e.message) if datastore['HttpTrace']

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)