File tree Expand file tree Collapse file tree 2 files changed +18
-4
lines changed
modules/auxiliary/scanner/winrm Expand file tree Collapse file tree 2 files changed +18
-4
lines changed Original file line number Diff line number Diff line change @@ -28,8 +28,9 @@ def initialize
28
28
'Description' => %q{
29
29
This module attempts to authenticate to a WinRM service. It currently
30
30
works only if the remote end allows Negotiate(NTLM) authentication.
31
- Kerberos is not currently supported.
32
- } ,
31
+ Kerberos is not currently supported. Please note: in order to use this
32
+ module, the 'AllowUnencrypted' winrm option must be set.
33
+ } ,
33
34
'Author' => [ 'thelightcosine' ] ,
34
35
'References' =>
35
36
[
@@ -77,3 +78,8 @@ def test_request
77
78
end
78
79
79
80
end
81
+
82
+ =begin
83
+ To set the AllowUncrypted option:
84
+ winrm set winrm/config/service @{AllowUnencrypted="true"}
85
+ =end
Original file line number Diff line number Diff line change @@ -29,7 +29,9 @@ def initialize
29
29
'Description' => %q{
30
30
This module runs WQL queries against remote WinRM Services.
31
31
Authentication is required. Currently only works with NTLM auth.
32
- } ,
32
+ Please note in order to use this module, the 'AllowUnencrypted'
33
+ winrm option must be set.
34
+ } ,
33
35
'Author' => [ 'thelightcosine' ] ,
34
36
'License' => MSF_LICENSE
35
37
)
@@ -69,6 +71,12 @@ def run_host(ip)
69
71
print_status "Results saved to #{ path } "
70
72
end
71
73
74
+ end
72
75
76
+ =begin
77
+ =begin
78
+ To set the AllowUncrypted option:
79
+ winrm set winrm/config/service @{AllowUnencrypted="true"}
80
+ =end
73
81
74
- end
82
+ = end
You can’t perform that action at this time.
0 commit comments