metasploit-framework/modules/auxiliary/admin/vmware/poweroff_vm.rb

63 lines
1.8 KiB
Ruby
Raw Normal View History

2012-02-15 02:52:45 +00:00
##
# This module requires Metasploit: http://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
2012-02-15 02:52:45 +00:00
##
require 'msf/core'
2016-03-08 13:02:44 +00:00
class MetasploitModule < Msf::Auxiliary
2012-02-15 02:52:45 +00:00
2013-08-30 21:28:54 +00:00
include Msf::Exploit::Remote::HttpClient
include Msf::Auxiliary::Report
include Msf::Exploit::Remote::VIMSoap
2012-02-15 02:52:45 +00:00
2013-08-30 21:28:54 +00:00
def initialize
super(
'Name' => 'VMWare Power Off Virtual Machine',
'Description' => %Q{
This module will log into the Web API of VMWare and try to power off
a specified Virtual Machine.},
'Author' => ['theLightCosine'],
2016-01-22 08:54:52 +00:00
'License' => MSF_LICENSE,
'DefaultOptions' => { 'SSL' => true }
2013-08-30 21:28:54 +00:00
)
2012-02-15 02:52:45 +00:00
2013-08-30 21:28:54 +00:00
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' ]),
OptString.new('VM', [true, "The VM to try to Power Off"])
], self.class)
end
2012-02-15 02:52:45 +00:00
2013-08-30 21:28:54 +00:00
def run
if vim_do_login(datastore['USERNAME'], datastore['PASSWORD']) == :success
vm_ref = vim_find_vm_by_name(datastore['VM'])
case vm_ref
when String
return_state = vim_powerOFF_vm(vm_ref)
case return_state
when 'success'
print_good "VM Powered Off Successfully"
when 'alreadyOFF'
print_status "The Server says that VM #{datastore['VM']} is already off."
else
print_error "The server returned an unexpected status #{return_state}"
end
when :noresponse
print_error "The request timed out"
when :error
print_error @vim_soap_error
when nil
print_error "Could not locate VM #{datastore['VM']}"
end
else
print_error "Login Failure on #{datastore['RHOST']}"
return
end
end
2012-02-15 02:52:45 +00:00
end