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-2023-38171 Microsoft QUIC Denial of Service Vulnerability — Microsoft Visual Studio 2022 version 17.2 7.5 High2023-10-10
CVE-2023-5441 NULL Pointer Dereference in vim/vim — vim/vim 5.5 -2023-10-05
CVE-2023-42754 Kernel: ipv4: null pointer dereference in ipv4_send_dest_unreach() — Red Hat Enterprise Linux 8 5.5 Medium2023-10-05
CVE-2023-24847 NULL pointer Dereference in Modem — Snapdragon 7.5 High2023-10-03
CVE-2022-48606 Huawei HarmonyOS 代码问题漏洞 — HarmonyOS 7.5 -2023-09-26
CVE-2023-20233 Cisco IOS XR 安全漏洞 — Cisco IOS XR Software 4.3 Medium2023-09-13
CVE-2023-40032 Potential segfault due to NULL pointer dereference in libvips — libvips 5.5 Medium2023-09-11
CVE-2023-39351 FreeRDP Null Pointer Dereference leading denial of service — FreeRDP 5.3 Medium2023-08-31
CVE-2023-4683 NULL Pointer Dereference in gpac/gpac — gpac/gpac 5.5 -2023-08-31
CVE-2023-4681 NULL Pointer Dereference in gpac/gpac — gpac/gpac 5.5 -2023-08-31
CVE-2023-4459 Kernel: vmxnet3: null pointer dereference in vmxnet3_rq_cleanup() — Red Hat Enterprise Linux 8.2 Advanced Update Support 5.5 Medium2023-08-21
CVE-2023-4385 Kernel: jfs: null pointer dereference in dbfree() — Red Hat Enterprise Linux 6 5.5 Medium2023-08-16
CVE-2023-39397 Huawei HarmonyOS Wearables 代码问题漏洞 — HarmonyOS 7.5 -2023-08-13
CVE-2023-38524 Siemens Parasolid 代码问题漏洞 — Parasolid V34.1 3.3 Low2023-08-08
CVE-2023-38670 Null pointer dereference in paddle.flip — PaddlePaddle 4.7 Medium2023-07-26
CVE-2023-3772 Kernel: xfrm: null pointer dereference in xfrm_update_ae_params() — Red Hat Enterprise Linux 8 5.5 Medium2023-07-25
CVE-2023-32252 Session null pointer dereference denial-of-service vulnerability — kernel 7.5 High2023-07-24
CVE-2023-32248 Tree connection null pointer dereference denial-of-service vulnerability — kernel 7.5 High2023-07-24
CVE-2023-3603 Processing sftp server read may cause null dereference — libssh 3.1 Low2023-07-21
CVE-2023-3106 Kernel: netlink socket crash (null pointer deref) in netlink_dump function — Red Hat Enterprise Linux 6 6.6 Medium2023-07-12
CVE-2023-32084 HTTP.sys Denial of Service Vulnerability — Windows 10 Version 1809 7.5 High2023-07-11
CVE-2023-35338 Windows Peer Name Resolution Protocol Denial of Service Vulnerability — Windows 10 Version 1809 7.5 High2023-07-11
CVE-2023-3354 Improper i/o watch removal in tls handshake can lead to remote unauthenticated denial of service — qemu 7.5 High2023-07-11
CVE-2021-33798 libpano13 代码问题漏洞 — libpano13 4.7 Medium2023-07-07
CVE-2022-48509 Huawei HarmonyOS 竞争条件问题漏洞 — HarmonyOS 4.7 -2023-07-06
CVE-2023-34164 Huawei HarmonyOS 代码问题漏洞 — HarmonyOS 7.5 -2023-07-06
CVE-2023-25523 NVIDIA CUDA toolkit 代码问题漏洞 — CUDA Toolkit 3.3 Low2023-07-03
CVE-2023-3338 Crash due to a null pointer dereference in the dn_nsp_send function — kernel 6.5 Medium2023-06-30
CVE-2023-2908 Libtiff: null pointer dereference in tif_dir.c — Libtiff 5.5 Medium2023-06-30
CVE-2023-3355 Null pointer dereference in submit_lookup_cmds() in drivers/gpu/drm/msm/msm_gem_submit.c — kernel 4.7 Medium2023-06-28

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