Path: blob/master/modules/payloads/singles/windows/metsvc_reverse_tcp.rb
21547 views
##1# This module requires Metasploit: https://metasploit.com/download2# Current source: https://github.com/rapid7/metasploit-framework3##45module MetasploitModule6CachedSize = 078include Msf::Payload::Windows9include Msf::Payload::Single10include Msf::Sessions::MeterpreterOptions::Windows1112def initialize(info = {})13super(14merge_info(15info,16'Name' => 'Windows Meterpreter Service, Reverse TCP Inline',17'Description' => 'Stub payload for interacting with a Meterpreter Service',18'Author' => 'hdm',19'License' => MSF_LICENSE,20'Platform' => 'win',21'Arch' => ARCH_X86,22'Handler' => Msf::Handler::ReverseTcp,23'Session' => Msf::Sessions::Meterpreter_x86_Win,24'Payload' => {25'Offsets' => {},26'Payload' => ''27}28)29)30end31end323334