Goal Reached Thanks to every supporter — we hit 100%!

Goal: 1000 CNY · Raised: 1000 CNY

100.0%

CWE-822 (非可信指针解引用) — Vulnerability Class 172

172 vulnerabilities classified as CWE-822 (非可信指针解引用). AI Chinese analysis included.

CWE-822 represents a critical memory safety weakness where software incorrectly interprets an untrusted input value as a valid memory address. This flaw typically arises when developers fail to validate or sanitize external data before casting it to a pointer type. Attackers exploit this vulnerability by supplying malicious pointer values that reference unintended memory regions. If the application dereferences this pointer for a write operation, the attacker can corrupt critical state variables, trigger a denial of service through a system crash, or potentially achieve arbitrary code execution by overwriting function pointers. To mitigate this risk, developers must implement rigorous input validation, ensuring that all external values are strictly checked against expected ranges and types before any pointer conversion occurs. Additionally, employing static analysis tools and memory-safe programming languages can help detect and prevent these dangerous dereferences during the development lifecycle.

MITRE CWE Description
The product obtains a value from an untrusted source, converts this value to a pointer, and dereferences the resulting pointer. An attacker can supply a pointer for memory locations that the product is not expecting. If the pointer is dereferenced for a write operation, the attack might allow modification of critical state variables, cause a crash, or execute code. If the dereferencing operation is for a read, then the attack might allow reading of sensitive data, cause a crash, or set a variable to an unexpected value (since the value will be read from an unexpected memory location). There are several variants of this weakness, including but not necessarily limited to: The untrusted value is directly invoked as a function call. In OS kernels or drivers where there is a boundary between "userland" and privileged memory spaces, an untrusted pointer might enter through an API or system call (see CWE-781 for one such example). Inadvertently accepting the value from an untrusted control sphere when it did not have to be accepted as input at all. This might occur when the code was originally developed to be run by a single user in a non-networked environment, and the code is then ported to or otherwise exposed to a networked environment.
Common Consequences (3)
ConfidentialityRead Memory
If the untrusted pointer is used in a read operation, an attacker might be able to read sensitive portions of memory.
AvailabilityDoS: Crash, Exit, or Restart
If the untrusted pointer references a memory location that is not accessible to the product, or points to a location that is "malformed" or larger than expected by a read or write operation, the application may terminate unexpectedly.
Integrity, Confidentiality, AvailabilityExecute Unauthorized Code or Commands, Modify Memory
If the untrusted pointer is used in a function call, or points to unexpected data in a write operation, then code execution may be possible.
CVE IDTitleCVSSSeverityPublished
CVE-2025-47408 Untrusted Pointer Dereference in Power Optimization Firmware — Snapdragon 7.8 High2026-05-04
CVE-2025-47405 Untrusted Pointer Dereference in Camera — Snapdragon 7.8 High2026-05-04
CVE-2026-33114 Microsoft Word Remote Code Execution Vulnerability — Microsoft 365 Apps for Enterprise 8.4 High2026-04-14
CVE-2026-32077 Windows UPnP Device Host Elevation of Privilege Vulnerability — Windows 10 Version 1607 7.8 High2026-04-14
CVE-2026-27920 Windows UPnP Device Host Elevation of Privilege Vulnerability — Windows 10 Version 1607 7.8 High2026-04-14
CVE-2026-33120 Microsoft SQL Server Remote Code Execution Vulnerability — Microsoft SQL Server 2022 (GDR) 8.8 High2026-04-14
CVE-2026-32222 Windows Win32k Elevation of Privilege Vulnerability — Windows 11 Version 24H2 7.8 High2026-04-14
CVE-2026-27919 Windows UPnP Device Host Elevation of Privilege Vulnerability — Windows 10 Version 1607 7.8 High2026-04-14
CVE-2026-26161 Windows Sensor Data Service Elevation of Privilege Vulnerability — Windows 10 Version 1809 7.8 High2026-04-14
CVE-2026-23670 Windows Virtualization-Based Security (VBS) Security Feature Bypass Vulnerability — Windows 10 Version 1607 5.7 Medium2026-04-14
CVE-2026-26112 Microsoft Excel Remote Code Execution Vulnerability — Microsoft 365 Apps for Enterprise 7.8 High2026-03-10
CVE-2026-26113 Microsoft Office Remote Code Execution Vulnerability — Microsoft 365 Apps for Enterprise 8.4 High2026-03-10
CVE-2021-26410 AMD Ryzen 安全漏洞 — AMD Ryzen™ 5000 Series Desktop Processors with Radeon™ Graphics 5.5AIMediumAI2026-02-10
CVE-2026-21232 Windows HTTP.sys Elevation of Privilege Vulnerability — Windows 11 version 22H3 7.8 High2026-02-10
CVE-2026-21250 Windows HTTP.sys Elevation of Privilege Vulnerability — Windows 11 Version 24H2 7.8 High2026-02-10
CVE-2025-59959 Junos OS and Junos OS Evolved: Executing a specific show command leads to an rpd crash — Junos OS 5.5 Medium2026-01-15
CVE-2026-20948 Microsoft Word Remote Code Execution Vulnerability — Microsoft 365 Apps for Enterprise 7.8 High2026-01-13
CVE-2026-20935 Windows Virtualization-Based Security (VBS) Information Disclosure Vulnerability — Windows 11 version 22H3 6.2 Medium2026-01-13
CVE-2026-20956 Microsoft Excel Remote Code Execution Vulnerability — Microsoft 365 Apps for Enterprise 7.8 High2026-01-13
CVE-2026-20955 Microsoft Excel Remote Code Execution Vulnerability — Microsoft 365 Apps for Enterprise 7.8 High2026-01-13
CVE-2026-20940 Windows Cloud Files Mini Filter Driver Elevation of Privilege Vulnerability — Windows 10 Version 1607 7.8 High2026-01-13
CVE-2026-20938 Windows Virtualization-Based Security (VBS) Enclave Elevation of Privilege Vulnerability — Windows 11 version 22H3 7.8 High2026-01-13
CVE-2026-20857 Windows Cloud Files Mini Filter Driver Elevation of Privilege Vulnerability — Windows 10 Version 1809 7.8 High2026-01-13
CVE-2026-20819 Windows Virtualization-Based Security (VBS) Information Disclosure Vulnerability — Windows 11 version 22H3 5.5 Medium2026-01-13
CVE-2025-47380 Untrusted Pointer Dereference in Camera — Snapdragon 7.8 High2026-01-06
CVE-2025-47343 Untrusted Pointer Dereference in Video — Snapdragon 7.8 High2026-01-06
CVE-2025-47387 Untrusted Pointer Dereference in Camera — Snapdragon 7.8 High2025-12-18
CVE-2025-47325 Untrusted Pointer Dereference in TZ Firmware — Snapdragon 6.5 Medium2025-12-18
CVE-2025-62560 Microsoft Excel Remote Code Execution Vulnerability — Microsoft 365 Apps for Enterprise 7.8 High2025-12-09
CVE-2025-62556 Microsoft Excel Remote Code Execution Vulnerability — Microsoft 365 Apps for Enterprise 7.8 High2025-12-09

Vulnerabilities classified as CWE-822 (非可信指针解引用) represent 172 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.