88658064df
git-svn-id: file:///home/svn/incoming/trunk@3242 4d416f70-5f16-0410-b530-b9f4589650da
62 lines
1.2 KiB
Ruby
62 lines
1.2 KiB
Ruby
#!/usr/bin/env ruby
|
|
|
|
require 'rex/post/process'
|
|
require 'rex/post/meterpreter/packet'
|
|
require 'rex/post/meterpreter/client'
|
|
require 'rex/post/meterpreter/extensions/stdapi/constants'
|
|
require 'rex/post/meterpreter/extensions/stdapi/stdapi'
|
|
|
|
module Rex
|
|
module Post
|
|
module Meterpreter
|
|
module Extensions
|
|
module Stdapi
|
|
module Sys
|
|
|
|
###
|
|
#
|
|
# This class provides access to the power of the remote machine (reboot, etc).
|
|
#
|
|
###
|
|
class Power
|
|
|
|
class <<self
|
|
attr_accessor :client
|
|
end
|
|
|
|
#
|
|
# Calls ExitWindows on the remote machine with the supplied parameters.
|
|
#
|
|
def Power._exitwindows(flags, reason = 0) # :nodoc:
|
|
request = Packet.create_request('stdapi_sys_power_exitwindows')
|
|
|
|
request.add_tlv(TLV_TYPE_POWER_FLAGS, flags);
|
|
request.add_tlv(TLV_TYPE_POWER_REASON, reason);
|
|
|
|
response = client.send_request(request)
|
|
|
|
return self
|
|
end
|
|
|
|
#
|
|
# Reboots the remote machine.
|
|
#
|
|
def Power.reboot(reason = 0)
|
|
self._exitwindows(EWX_REBOOT, reason)
|
|
end
|
|
|
|
#
|
|
# Shuts down the remote machine.
|
|
#
|
|
def Power.shutdown(force = 0, reason = 0)
|
|
flags = EWX_POWEROFF
|
|
flags |= EWX_FORCEIFHUNG if force == 1
|
|
flags |= EWX_FORCE if force == 2
|
|
|
|
self._exitwindows(flags, reason)
|
|
end
|
|
|
|
end
|
|
|
|
end end end end end end
|