File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
modules/auxiliary/scanner/http Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change
1
+ ##
2
+ # This file is part of the Metasploit Framework and may be subject to
3
+ # redistribution and commercial restrictions. Please see the Metasploit
4
+ # Framework web site for more information on licensing and terms of use.
5
+ # http://metasploit.com/framework/
6
+ ##
7
+
1
8
require 'msf/core'
2
9
require 'rexml/document'
3
10
@@ -80,9 +87,10 @@ def run_host(ip)
80
87
81
88
if ( info [ :username ] and info [ :password ] )
82
89
if ( info [ :domain ] and info [ :basedir ] )
83
- print_good ( "#{ ip } :#{ datastore [ 'RPORT' ] } - Domain: #{ info [ :domain ] } Base Directory: #{ info [ :basedir ] } " )
90
+ print_good ( "#{ ip } :#{ datastore [ 'RPORT' ] } - Domain: #{ info [ :domain ] } " )
91
+ print_good ( "#{ ip } :#{ datastore [ 'RPORT' ] } - Base Directory: #{ info [ :basedir ] } " )
84
92
end
85
- print_good ( "#{ ip } :#{ datastore [ 'RPORT' ] } - Admin Credentials: #{ info [ :username ] } #{ info [ :password ] } " )
93
+ print_good ( "#{ ip } :#{ datastore [ 'RPORT' ] } - Admin Credentials: ' #{ info [ :username ] } : #{ info [ :password ] } ' " )
86
94
report_auth_info (
87
95
:host => ip ,
88
96
:port => datastore [ 'RPORT' ] ,
You can’t perform that action at this time.
0 commit comments