2012-02-01 18:05:20 +00:00
|
|
|
##
|
|
|
|
# This file is part of the Metasploit Framework and may be subject to
|
|
|
|
# redistribution and commercial restrictions. Please see the Metasploit
|
2012-02-21 01:40:50 +00:00
|
|
|
# web site for more information on licensing and terms of use.
|
|
|
|
# http://metasploit.com/
|
2012-02-01 18:05:20 +00:00
|
|
|
##
|
|
|
|
|
|
|
|
|
|
|
|
require 'msf/core'
|
|
|
|
|
|
|
|
|
|
|
|
class Metasploit3 < Msf::Auxiliary
|
|
|
|
|
|
|
|
include Msf::Exploit::Remote::HttpClient
|
|
|
|
include Msf::Auxiliary::Report
|
|
|
|
include Msf::Exploit::Remote::VIMSoap
|
|
|
|
include Msf::Auxiliary::Scanner
|
|
|
|
|
|
|
|
def initialize
|
|
|
|
super(
|
|
|
|
'Name' => 'VMWare Enumerate Host Details',
|
2012-02-17 18:21:38 +00:00
|
|
|
'Description' => %Q{
|
2012-03-18 05:07:27 +00:00
|
|
|
This module attempts to enumerate information about the host systems through the VMWare web API.
|
|
|
|
This can include information about the hardware installed on the host machine.
|
|
|
|
},
|
2012-09-20 02:46:14 +00:00
|
|
|
'Author' => ['theLightCosine'],
|
2012-02-01 18:05:20 +00:00
|
|
|
'License' => MSF_LICENSE
|
|
|
|
)
|
|
|
|
|
|
|
|
register_options(
|
|
|
|
[
|
|
|
|
Opt::RPORT(443),
|
|
|
|
OptString.new('USERNAME', [ true, "The username to Authenticate with.", 'root' ]),
|
|
|
|
OptString.new('PASSWORD', [ true, "The password to Authenticate with.", 'password' ]),
|
|
|
|
OptBool.new('HW_DETAILS', [true, "Enumerate the Hardware on the system as well?", false])
|
|
|
|
], self.class)
|
2012-03-18 05:07:27 +00:00
|
|
|
|
2012-03-16 00:06:48 +00:00
|
|
|
register_advanced_options([OptBool.new('SSL', [ false, 'Negotiate SSL for outgoing connections', true]),])
|
2012-02-01 18:05:20 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def run_host(ip)
|
|
|
|
|
|
|
|
if vim_do_login(datastore['USERNAME'], datastore['PASSWORD']) == :success
|
|
|
|
output = "VMWare Host at #{ip} details\n"
|
|
|
|
output << "-----------------------------\n"
|
2012-02-03 21:44:41 +00:00
|
|
|
host_summary = vim_get_all_host_summary(datastore['HW_DETAILS'])
|
2012-02-01 18:05:20 +00:00
|
|
|
output << YAML.dump(host_summary)
|
|
|
|
print_good output
|
2013-08-19 20:02:15 +00:00
|
|
|
|
|
|
|
f = store_loot('vmware_host_details', "text/plain", datastore['RHOST'], output, "#{datastore['RHOST']}_vmware_host.txt", "VMWare Host Details")
|
|
|
|
vprint_status("Host details stored in: #{f}")
|
2012-02-01 18:05:20 +00:00
|
|
|
else
|
|
|
|
print_error "Login Failure on #{ip}"
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|