File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
modules/auxiliary/scanner/pcanywhere Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ def initialize
21
21
report successful logins.
22
22
} ,
23
23
'Author' => [ 'theLightCosine' ] ,
24
- 'References' =>
24
+ 'References' =>
25
25
[
26
26
[ 'CVE' , '1999-0502' ] # Weak password
27
27
] ,
@@ -49,7 +49,7 @@ def run_host(ip)
49
49
port : datastore [ 'RPORT' ] ,
50
50
service_name : 'pcanywhere' ,
51
51
user : user ,
52
- password : pass ,
52
+ password : pass
53
53
)
54
54
return if datastore [ 'STOP_ON_SUCCESS' ]
55
55
print_status ( 'Waiting to Re-Negotiate Connection (this may take a minute)...' )
@@ -90,7 +90,8 @@ def report_cred(opts)
90
90
91
91
login_data = {
92
92
core : create_credential ( credential_data ) ,
93
- status : Metasploit ::Model ::Login ::Status ::SUCCESSFUL ,
93
+ last_attempted_at : DateTime . now ,
94
+ status : Metasploit ::Model ::Login ::Status ::SUCCESSFUL
94
95
} . merge ( service_data )
95
96
96
97
create_credential_login ( login_data )
You can’t perform that action at this time.
0 commit comments