## # $Id$ ## ## # This file is part of the Metasploit Framework and may be subject to # redistribution and commercial restrictions. Please see the Metasploit # web site for more information on licensing and terms of use. # http://metasploit.com/ ## require 'msf/core' require 'rex/proto/ntlm/message' class Metasploit3 < Msf::Auxiliary include Msf::Exploit::Remote::WinRM include Msf::Auxiliary::Report include Msf::Auxiliary::Scanner def initialize super( 'Name' => 'WinRM Authentication Methos Detection', 'Version' => '$Revision$', 'Description' => %q{ This module sends a request to a an http/https service to see if it is a WinRM service. If it is a WinRM service, it also gathers the Authentication Methods supported. }, 'Author' => [ 'thelightcosine' ], 'License' => MSF_LICENSE ) deregister_options('USERNAME', 'PASSWORD') end def run_host(ip) resp = winrm_poke if resp.code == 401 and resp.headers['Server'].include? "Microsoft-HTTPAPI" methods = parse_auth_methods(resp) desc = resp.headers['Server'] + " Authentication Methods: " + methods.to_s report_service( :host => ip, :port => rport, :proto => 'tcp', :name => 'winrm', :info => desc ) print_good "Negotiate protocol supported" if methods.include? "Negotiate" print_good "Kerberos protocol supported" if methods.include? "Kerberos" print_good "Basic protocol supported" if methods.include? "Basic" else print_error "#{ip}:#{rport} Does not appear to be a WinRM server" end end end