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

Goal: 1000 CNY · Raised: 1000 CNY

100.0%

CWE-476 (空指针解引用) — Vulnerability Class 1138

1138 vulnerabilities classified as CWE-476 (空指针解引用). AI Chinese analysis included.

CWE-476 represents a critical memory management weakness where software attempts to access memory through a pointer that holds a NULL value instead of a valid address. This error typically occurs when a function fails to allocate memory or validate input, yet the code proceeds to dereference the resulting null reference without checking its status. Attackers exploit this vulnerability by triggering the null condition, often causing the application to crash and resulting in a denial of service. In more complex scenarios, if the NULL pointer is manipulated to point to executable code, it may lead to arbitrary code execution or privilege escalation. To prevent this, developers must rigorously validate all pointers before use, ensuring they are not NULL. Implementing defensive programming practices, such as using assertions during development and comprehensive error handling in production, helps mitigate the risk of dereferencing invalid memory addresses.

MITRE CWE Description
The product dereferences a pointer that it expects to be valid but is NULL.
Common Consequences (2)
AvailabilityDoS: Crash, Exit, or Restart
NULL pointer dereferences usually result in the failure of the process unless exception handling (on some platforms) is available and implemented. Even when exception handling is being used, it can still be very difficult to return the software to a safe state of operation.
Integrity, ConfidentialityExecute Unauthorized Code or Commands, Read Memory, Modify Memory
In rare circumstances, when NULL is equivalent to the 0x0 memory address and privileged code can access it, then writing or reading memory is possible, which may lead to code execution.
Mitigations (5)
ImplementationFor any pointers that could have been modified or provided from a function that can return NULL, check the pointer for NULL before use. When working with a multithreaded or otherwise asynchronous environment, ensure that proper locking APIs are used to lock before the check, and unlock when it has finished [REF-1484].
RequirementsSelect a programming language that is not susceptible to these issues.
ImplementationCheck the results of all functions that return a value and verify that the value is non-null before acting upon it.
Effectiveness: Moderate
Architecture and DesignIdentify all variables and data stores that receive information from external sources, and apply input validation to make sure that they are only initialized to expected values.
ImplementationExplicitly initialize all variables and other data stores, either during declaration or just before the first usage.
Examples (2)
This example takes an IP address from a user, verifies that it is well formed and then looks up the hostname and copies it into a buffer.
void host_lookup(char *user_supplied_addr){ struct hostent *hp; in_addr_t *addr; char hostname[64]; in_addr_t inet_addr(const char *cp); /*routine that ensures user_supplied_addr is in the right format for conversion */ validate_addr_form(user_supplied_addr); addr = inet_addr(user_supplied_addr); hp = gethostbyaddr( addr, sizeof(struct in_addr), AF_INET); strcpy(hostname, hp->h_name); }
Bad · C
In the following code, the programmer assumes that the system always has a property named "cmd" defined. If an attacker can control the program's environment so that "cmd" is not defined, the program throws a NULL pointer exception when it attempts to call the trim() method.
String cmd = System.getProperty("cmd"); cmd = cmd.trim();
Bad · Java
CVE IDTitleCVSSSeverityPublished
CVE-2025-62848 QTS, QuTS hero — QTS 7.5AIHighAI2025-12-16
CVE-2025-62465 DirectX Graphics Kernel Denial of Service Vulnerability — Windows 11 version 22H3 6.5 Medium2025-12-09
CVE-2025-62463 DirectX Graphics Kernel Denial of Service Vulnerability — Windows 10 Version 21H2 6.5 Medium2025-12-09
CVE-2025-62466 Windows Client-Side Caching Elevation of Privilege Vulnerability — Windows 10 Version 1607 7.8 High2025-12-09
CVE-2025-14309 ravynOS 安全漏洞 — ravynos 7.5 High2025-12-09
CVE-2025-6966 Null-pointer dereference in python-apt TagSection.keys() — python-apt 5.5 -2025-12-05
CVE-2025-64527 Envoy crashes when JWT authentication is configured with the remote JWKS fetching — envoy 6.5 Medium2025-12-03
CVE-2025-20750 MediaTek Chipsets 安全漏洞 — MT2735, MT6833, MT6833P, MT6853, MT6853T, MT6855, MT6855T, MT6873, MT6875, MT6875T, MT6877, MT6877T, MT6877TT, MT6880, MT6883, MT6885, MT6889, MT6890, MT6891, MT6893, MT8675, MT8771, MT8791, MT8791T, MT8797 7.5AIHighAI2025-12-02
CVE-2025-20790 MediaTek Chipsets 安全漏洞 — MT2735, MT6833, MT6833P, MT6853, MT6853T, MT6855, MT6855T, MT6873, MT6875, MT6875T, MT6877, MT6877T, MT6877TT, MT6880, MT6883, MT6885, MT6889, MT6890, MT6891, MT6893, MT8675, MT8771, MT8791, MT8791T, MT8797 7.5AIHighAI2025-12-02
CVE-2025-20755 MediaTek Chipsets 安全漏洞 — MT2735, MT6833, MT6833P, MT6853, MT6853T, MT6855, MT6855T, MT6873, MT6875, MT6875T, MT6877, MT6877T, MT6877TT, MT6880, MT6883, MT6885, MT6889, MT6890, MT6891, MT6893, MT8675, MT8771, MT8791, MT8791T, MT8797 7.5AIHighAI2025-12-02
CVE-2025-7007 Null pointer dereference in Avast Antivirus on macOS (16.0.0) or Linux (3.0.3) — Antivirus 7.5 High2025-12-01
CVE-2025-11156 Improper Service Loading Vulnerability in Netskope Endpoint DLP Driver — Netskope Client 4.4 -2025-11-28
CVE-2025-64335 Suricata is vulnerable to a null deref when used with base64_data — suricata 7.5 High2025-11-26
CVE-2025-33197 NVIDIA DGX Spark 代码问题漏洞 — DGX Spark 4.3 Medium2025-11-25
CVE-2025-62609 MLX has Wild Pointer Dereference in load_gguf() — mlx 5.5 -2025-11-21
CVE-2025-13425 Denial of Service in OSV-SCALIBR — OSV-SCALIBR 6.2 -2025-11-20
CVE-2025-13397 mrubyc alloc.c mrbc_raw_realloc null pointer dereference — mrubyc 3.3 Low2025-11-19
CVE-2025-59777 GNU libmicrohttpd 代码问题漏洞 — GNU libbmicrohttpd 7.5 -2025-11-10
CVE-2025-7700 Ffmpeg: null pointer dereference in ffmpeg als decoder (libavcodec/alsdec.c) 5.3 Medium2025-11-07
CVE-2025-47207 File Station 5 — File Station 5 7.5 -2025-11-07
CVE-2025-52865 File Station 5 — File Station 5 7.5 -2025-11-07
CVE-2025-53408 File Station 5 — File Station 5 7.5 -2025-11-07
CVE-2025-53412 File Station 5 — File Station 5 7.5 -2025-11-07
CVE-2025-46404 Entrouvert Lasso 安全漏洞 — Lasso 7.5 High2025-11-05
CVE-2025-62790 Wazuh vulnerable to NULL pointer dereference in fim_fetch_attributes_state — wazuh 7.5AIHighAI2025-10-29
CVE-2025-12207 Kamailio Grammar Rule cfg.y yyerror_at null pointer dereference — Kamailio 3.3 Low2025-10-27
CVE-2025-12206 Kamailio rvalue.c rve_is_constant null pointer dereference — Kamailio 3.3 Low2025-10-27
CVE-2025-23332 NVIDIA GPU Display Driver 代码问题漏洞 — Virtual GPU Manager 5.0 Medium2025-10-23
CVE-2025-23330 NVIDIA GPU Display Driver 代码问题漏洞 — GeForce 5.5 Medium2025-10-23
CVE-2025-23300 NVIDIA GPU Display Driver 代码问题漏洞 — Virtual GPU Manager 5.5 Medium2025-10-23

Vulnerabilities classified as CWE-476 (空指针解引用) represent 1138 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.