Update the description about AllowUnencrypted

unstable
sinn3r 2012-10-31 15:11:00 -05:00
parent 8711484438
commit 98c1272b92
2 changed files with 19 additions and 5 deletions

View File

@ -28,8 +28,9 @@ class Metasploit3 < Msf::Auxiliary
'Description' => %q{
This module attempts to authenticate to a WinRM service. It currently
works only if the remote end allows Negotiate(NTLM) authentication.
Kerberos is not currently supported.
},
Kerberos is not currently supported. Please note: in order to use this
module, the 'AllowUnencrypted' winrm option must be set.
},
'Author' => [ 'thelightcosine' ],
'References' =>
[
@ -77,3 +78,8 @@ class Metasploit3 < Msf::Auxiliary
end
end
=begin
To set the AllowUncrypted option:
winrm set winrm/config/service @{AllowUnencrypted="true"}
=end

View File

@ -29,7 +29,9 @@ class Metasploit3 < Msf::Auxiliary
'Description' => %q{
This module runs WQL queries against remote WinRM Services.
Authentication is required. Currently only works with NTLM auth.
},
Please note in order to use this module, the 'AllowUnencrypted'
winrm option must be set.
},
'Author' => [ 'thelightcosine' ],
'License' => MSF_LICENSE
)
@ -69,6 +71,12 @@ class Metasploit3 < Msf::Auxiliary
print_status "Results saved to #{path}"
end
end
=begin
=begin
To set the AllowUncrypted option:
winrm set winrm/config/service @{AllowUnencrypted="true"}
=end
=end