91 lines
3.0 KiB
Ruby
91 lines
3.0 KiB
Ruby
##
|
|
# This module requires Metasploit: https://metasploit.com/download
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
|
##
|
|
|
|
class MetasploitModule < Msf::Auxiliary
|
|
include Msf::Exploit::Remote::VIMSoap
|
|
include Msf::Exploit::Remote::HttpClient
|
|
include Msf::Auxiliary::Report
|
|
include Msf::Auxiliary::Scanner
|
|
|
|
def initialize
|
|
super(
|
|
'Name' => 'VMware Enumerate Permissions',
|
|
'Description' => %(
|
|
This module will log into the Web API of VMware and try to enumerate
|
|
all the user/group permissions. Unlike enum users this is only
|
|
users and groups that specifically have permissions defined within
|
|
the VMware product
|
|
),
|
|
'Author' => ['theLightCosine'],
|
|
'License' => MSF_LICENSE,
|
|
'DefaultOptions' => { 'SSL' => true },
|
|
'Notes' => {
|
|
'Stability' => [CRASH_SAFE],
|
|
'SideEffects' => [],
|
|
'Reliability' => []
|
|
}
|
|
)
|
|
|
|
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' ])
|
|
]
|
|
)
|
|
end
|
|
|
|
def run_host(ip)
|
|
if vim_do_login(datastore['USERNAME'], datastore['PASSWORD']) == :success
|
|
role_map = {}
|
|
esx_roles = vim_get_roles
|
|
case esx_roles
|
|
when :noresponse
|
|
print_error "Received no response from #{ip}"
|
|
when :expired
|
|
print_error "The login session appears to have expired on #{ip}"
|
|
when :error
|
|
print_error "An error occurred while trying to enumerate the roles on #{ip}"
|
|
else
|
|
esx_roles.each do |role|
|
|
role_map[role['roleId']] = {
|
|
'name' => role['name'],
|
|
'system' => role['system'],
|
|
'summary' => role['info']['summary']
|
|
}
|
|
end
|
|
end
|
|
|
|
esx_permissions = vim_get_all_permissions
|
|
case esx_permissions
|
|
when :noresponse
|
|
print_error "Received no response from #{ip}"
|
|
when :expired
|
|
print_error "The login session appears to have expired on #{ip}"
|
|
when :error
|
|
print_error "An error occurred while trying to enumerate the permissions on #{ip}"
|
|
else
|
|
tmp_perms = Rex::Text::Table.new(
|
|
'Header' => "Permissions for VMware #{ip}",
|
|
'Indent' => 1,
|
|
'Columns' => ['Name', 'IsAGroup', 'Role', 'Role Summary']
|
|
)
|
|
esx_permissions.each do |perm|
|
|
role_name = role_map[perm['roleId']]['name']
|
|
role_summary = role_map[perm['roleId']]['summary']
|
|
tmp_perms << [perm['principal'], perm['group'], role_name, role_summary]
|
|
end
|
|
print_good tmp_perms.to_s
|
|
|
|
f = store_loot('host.vmware.permissions', 'text/plain', datastore['RHOST'], tmp_perms.to_csv, "#{datastore['RHOST']}_esx_permissions.txt", 'VMware ESX Permissions')
|
|
vprint_good("Permission info stored in: #{f}")
|
|
end
|
|
else
|
|
print_error "Login failure on #{ip}"
|
|
return
|
|
end
|
|
end
|
|
end
|