diff --git a/modules/auxiliary/scanner/winrm/winrm_login.rb b/modules/auxiliary/scanner/winrm/winrm_login.rb index 198bdd83d6..146a863da1 100644 --- a/modules/auxiliary/scanner/winrm/winrm_login.rb +++ b/modules/auxiliary/scanner/winrm/winrm_login.rb @@ -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 diff --git a/modules/auxiliary/scanner/winrm/winrm_wql.rb b/modules/auxiliary/scanner/winrm/winrm_wql.rb index 8cb82a2db9..5cbdc5452d 100644 --- a/modules/auxiliary/scanner/winrm/winrm_wql.rb +++ b/modules/auxiliary/scanner/winrm/winrm_wql.rb @@ -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 \ No newline at end of file