rapid7/metasploit-framework

View on GitHub
modules/payloads/stagers/multi/reverse_http.rb

Summary

Maintainability
A
25 mins
Test Coverage
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

module MetasploitModule

  CachedSize = 0

  include Msf::Payload::Stager
  include Msf::Payload::Multi
  include Msf::Payload::Multi::ReverseHttp

  def initialize(info = {})
    super(merge_info(info,
      'Name'        => 'Reverse HTTP Stager (Multiple Architectures)',
      'Description' => 'Tunnel communication over HTTP',
      'Author'      => 'OJ Reeves',
      'License'     => MSF_LICENSE,
      'Platform'    => ['multi'],
      'Arch'        => ARCH_ALL,
      'Handler'     => Msf::Handler::ReverseHttp,
      'Stager'      => {'Payload' => ''},
      'Convention'  => 'http'))
  end
end