Security Vulnerability Report
中文
CVE-2026-35419 CVSS 5.5 MEDIUM

CVE-2026-35419

Published: 2026-05-12 18:17:12
Last Modified: 2026-05-14 15:52:39

Description

Out-of-bounds read in Windows DWM Core Library allows an authorized attacker to disclose information locally.

CVSS Details

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

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 10 (多个版本)
Windows 11 (多个版本)
Windows Server 2019
Windows Server 2022

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#include <windows.h> #include <iostream> // Conceptual Proof of Concept for CVE-2026-35419 // Note: This is a simplified simulation to demonstrate the trigger logic. // Actual exploitation requires specific memory layout and API calls. void TriggerVulnerability() { // Load the vulnerable library (dwmcore.dll) HMODULE hDwmCore = LoadLibrary(L"dwmcore.dll"); if (hDwmCore == NULL) { std::cerr << "Failed to load dwmcore.dll" << std::endl; return; } // Hypothetical function causing the out-of-bounds read // In a real scenario, specific parameters would be crafted to // manipulate the buffer pointer to read beyond bounds. typedef void (*VULN_FUNC)(char* input, size_t length); VULN_FUNC VulnerableFunction = (VULN_FUNC)GetProcAddress(hDwmCore, "VulnerableFunctionName"); if (VulnerableFunction) { // Crafted input to trigger the read char buffer[256]; memset(buffer, 'A', sizeof(buffer)); // Passing a manipulated size or pointer to cause OOB read VulnerableFunction(buffer, 0xFFFFFFFF); } FreeLibrary(hDwmCore); } int main() { std::cout << "Attempting to trigger CVE-2026-35419..." << std::endl; TriggerVulnerability(); return 0; }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-35419", "sourceIdentifier": "[email protected]", "published": "2026-05-12T18:17:12.437", "lastModified": "2026-05-14T15:52:39.053", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Out-of-bounds read in Windows DWM Core Library allows an authorized attacker to disclose information 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:N/A:N", "baseScore": 5.5, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-125"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:microsoft:windows_11_24h2:*:*:*:*:*:*:arm64:*", "versionEndExcluding": "10.0.26100.8390", "matchCriteriaId": "048AD3CD-DD62-4B62-9302-61779D998B4A"}, {"vulnerable": true, "criteria": "cpe:2.3:o:microsoft:windows_11_24h2:*:*:*:*:*:*:x64:*", "versionEndExcluding": "10.0.26100.8390", "matchCriteriaId": "3682F4DD-0870-4E39-B75E-649C89BB1E08"}, {"vulnerable": true, "criteria": "cpe:2.3:o:microsoft:windows_11_25h2:*:*:*:*:*:*:arm64:*", "versionEndExcluding": "10.0.26200.8390", "matchCriteriaId": "C2C93D38-DFD7-4DE1-95B8-6D73E4A545D6"}, {"vulnerable": true, "criteria": "cpe:2.3:o:microsoft:windows_11_25h2:*:*:*:*:*:*:x64:*", "versionEndExcluding": "10.0.26200.8390", "matchCriteriaId": "05EB89A0-2ADD-4B67-A644-41FE1DE69E4A"}, {"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:*:*:*:*:*:*:*:*", "versionEndExcluding": "10.0.26100.32772", "matchCriteriaId": "9ABAB3B9-28AF-4278-8E78-E1191B1AFC0C"}]}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-35419", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}