File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
modules/auxiliary/scanner/http Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -19,8 +19,12 @@ def initialize
19
19
'Name' => 'OWA Exchange Web Services (EWS) Login Scanner' ,
20
20
'Description' => %q{
21
21
This module attempts to log in to the Exchange Web Services, often
22
- exposed at https://owahost/ews/, using NTLM authentication. This method
23
- is faster and simpler than traditional form-based logins.
22
+ exposed at https://example.com/ews/, using NTLM authentication. This
23
+ method is faster and simpler than traditional form-based logins.
24
+
25
+ In most cases, all you need to set is RHOSTS and some combination of
26
+ user/pass files; the autodiscovery should find the location of the NTLM
27
+ authentication point as well as the AD domain, and use them accordingly.
24
28
} ,
25
29
'Author' => 'Rich Whitcroft' ,
26
30
'License' => MSF_LICENSE ,
@@ -85,7 +89,7 @@ def run_host(ip)
85
89
res = cli . send_recv ( req )
86
90
rescue ::Rex ::ConnectionError , Errno ::ECONNREFUSED , Errno ::ETIMEDOUT
87
91
print_error ( "Connection failed" )
88
- return
92
+ next
89
93
end
90
94
91
95
if res . code != 401
You can’t perform that action at this time.
0 commit comments