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

CVE-2026-42896

Published: 2026-05-12 18:17:26
Last Modified: 2026-05-14 14:31:34

Description

Integer overflow or wraparound in Windows DWM Core Library 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:o:microsoft:windows_11_24h2:*:*:*:*:*:*:arm64:* - VULNERABLE
cpe:2.3:o:microsoft:windows_11_24h2:*:*:*:*:*:*:x64:* - VULNERABLE
cpe:2.3:o:microsoft:windows_11_25h2:*:*:*:*:*:*:arm64:* - VULNERABLE
cpe:2.3:o:microsoft:windows_11_25h2:*:*:*:*:*:*:x64:* - VULNERABLE
cpe:2.3:o:microsoft:windows_11_26h1:*:*:*:*:*:*:arm64:* - VULNERABLE
Windows (具体受影响版本请参考微软安全公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#include <windows.h> #include <iostream> // Proof of Concept for Integer Overflow in Windows DWM Core Library // This is a simulation of the trigger logic. void TriggerOverflow() { // Simulate the vulnerable calculation size_t count = 0x100000000; // Large value size_t element_size = 0x10; // Integer overflow occurs here if not checked properly // 0x100000000 * 0x10 wraps to 0 in a 32-bit context or similar size_t total_size = count * element_size; if (total_size == 0) { std::cout << "[+] Integer overflow triggered: Total size is 0." << std::endl; // Attempt to allocate memory or call the vulnerable API // In a real scenario, this would lead to a heap overflow or OOB write // ExploitPayload(); } else { std::cout << "[-] Overflow not triggered." << std::endl; } } int main() { std::cout << "[*] Starting PoC for CVE-2026-42896..." << std::endl; TriggerOverflow(); return 0; }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-42896", "sourceIdentifier": "[email protected]", "published": "2026-05-12T18:17:26.470", "lastModified": "2026-05-14T14:31:34.470", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Integer overflow or wraparound in Windows DWM Core Library allows an authorized attacker to elevate privileges locally."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "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": "Primary", "description": [{"lang": "en", "value": "CWE-122"}, {"lang": "en", "value": "CWE-190"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:microsoft:windows_11_24h2:*:*:*:*:*:*:arm64:*", "versionEndExcluding": "10.0.26100.8457", "matchCriteriaId": "3F89C01D-4D0C-47C1-82C8-024CA46EF25A"}, {"vulnerable": true, "criteria": "cpe:2.3:o:microsoft:windows_11_24h2:*:*:*:*:*:*:x64:*", "versionEndExcluding": "10.0.26100.8457", "matchCriteriaId": "1BB46D3A-6E84-48AD-BDC0-3457F5EC2723"}, {"vulnerable": true, "criteria": "cpe:2.3:o:microsoft:windows_11_25h2:*:*:*:*:*:*:arm64:*", "versionEndExcluding": "10.0.26200.8457", "matchCriteriaId": "494E4623-756E-4275-B69A-366E580519AE"}, {"vulnerable": true, "criteria": "cpe:2.3:o:microsoft:windows_11_25h2:*:*:*:*:*:*:x64:*", "versionEndExcluding": "10.0.26200.8457", "matchCriteriaId": "C43B409A-1614-45DB-95AA-F40216427B90"}, {"vulnerable": true, "criteria": "cpe:2.3:o:microsoft:windows_11_26h1:*:*:*:*:*:*:arm64:*", "versionEndExcluding": "10.0.28000.2113", "matchCriteriaId": "D45A5D2F-E058-4033-B184-BAE224FC1CEA"}, {"vulnerable": true, "criteria": "cpe:2.3:o:microsoft:windows_11_26h1:*:*:*:*:*:*:x64:*", "versionEndExcluding": "10.0.28000.2113", "matchCriteriaId": "5127F350-9271-4B74-84E0-D7E5D2D5640E"}, {"vulnerable": true, "criteria": "cpe:2.3:o:microsoft:windows_server_2025:*:*:*:*:*:*:x64:*", "versionEndExcluding": "10.0.26100.32860", "matchCriteriaId": "CB9950F0-DDDD-4689-865C-1F04BFBE15B3"}]}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-42896", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}