File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
modules/auxiliary/scanner/smtp Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ class Metasploit3 < Msf::Auxiliary
14
14
def initialize
15
15
super (
16
16
'Name' => 'SMTP NTLM Domain Extraction' ,
17
- 'Description' => 'Extract the Windows domain name given an NTLM challenge.' ,
17
+ 'Description' => 'Extract the Windows domain name from a SMTP NTLM challenge.' ,
18
18
'References' => [ [ 'URL' , 'http://msdn.microsoft.com/en-us/library/cc246870.aspx' ] ] ,
19
- 'Author' => [ 'Rich Whitcroft <rwhitcroft@ digitalboundary.net>' ] ,
19
+ 'Author' => [ 'Rich Whitcroft <rwhitcroft[at] digitalboundary.net>' ] ,
20
20
'License' => MSF_LICENSE
21
21
)
22
22
@@ -33,11 +33,11 @@ def run_host(ip)
33
33
begin
34
34
domain = nil
35
35
connect
36
- print_status ( "Connected to #{ ip } :#{ datastore [ 'RPORT' ] } " )
36
+ vprint_status ( "Connected to #{ ip } :#{ datastore [ 'RPORT' ] } " )
37
37
38
38
# send a EHLO and parse the extensions returned
39
39
sock . puts ( "EHLO " + datastore [ 'EHLO_DOMAIN' ] + "\r \n " )
40
- exts = sock . get_once . split ( /\n / )
40
+ exts = sock . get_once . to_s . split ( /\n / )
41
41
42
42
# loop through all returned extensions related to NTLM
43
43
exts . grep ( /NTLM/ ) . each do |ext |
You can’t perform that action at this time.
0 commit comments