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-2024-21404 .NET Denial of Service Vulnerability — .NET 6.0 7.5 High2024-02-13
CVE-2024-1096 Twister Antivirus v8.17 - Denial of Service — Twister Antivirus 5.5 Medium2024-02-13
CVE-2024-23801 Siemens Tecnomatix Plant Simulation 代码问题漏洞 — Tecnomatix Plant Simulation V2201 3.3 Low2024-02-13
CVE-2024-23800 Siemens Tecnomatix Plant Simulation 代码问题漏洞 — Tecnomatix Plant Simulation V2201 3.3 Low2024-02-13
CVE-2024-23799 Siemens Tecnomatix Plant Simulation 代码问题漏洞 — Tecnomatix Plant Simulation V2201 3.3 Low2024-02-13
CVE-2024-22043 Siemens Parasolid 代码问题漏洞 — Parasolid V35.0 3.3 Low2024-02-13
CVE-2023-48364 Siemens SIMATIC WinCC和Siemens SIMATIC PCS 安全漏洞 — OpenPCS 7 V9.1 6.5 Medium2024-02-13
CVE-2023-48363 Siemens SIMATIC WinCC和Siemens SIMATIC PCS 代码问题漏洞 — OpenPCS 7 V9.1 6.5 Medium2024-02-13
CVE-2024-23327 Crash in proxy protocol when command type of LOCAL in Envoy — envoy 7.5 High2024-02-09
CVE-2023-6536 Kernel: null pointer dereference in __nvmet_req_complete — Red Hat Enterprise Linux 8 6.5 Medium2024-02-07
CVE-2023-6356 Kernel: null pointer dereference in nvmet_tcp_build_iovec — Red Hat Enterprise Linux 8 6.5 Medium2024-02-07
CVE-2023-6535 Kernel: null pointer dereference in nvmet_tcp_execute_request — Red Hat Enterprise Linux 8 6.5 Medium2024-02-07
CVE-2023-43522 NULL Pointer Dereference in WLAN Firmware — Snapdragon 7.5 High2024-02-06
CVE-2023-41274 QTS, QuTS hero, QuTScloud — QTS 5.5 Medium2024-02-02
CVE-2023-40546 Shim: out-of-bounds read printing error messages — Red Hat Enterprise Linux 7 6.2 Medium2024-01-29
CVE-2024-23441 Vba32 Antivirus v3.36.0 - Denial of Service (DoS) — Vba32 Antivirus 5.5 Medium2024-01-29
CVE-2024-0841 Kernel: hugetlbfs: null pointer dereference in hugetlbfs_fill_super function — Red Hat Enterprise Linux 8 6.6 Medium2024-01-28
CVE-2024-0727 PKCS12 Decoding crashes — OpenSSL 6.5 -2024-01-26
CVE-2024-22099 NULL pointer deference in rfcomm_check_security in Linux kernel — Linux kernel 6.3 Medium2024-01-25
CVE-2024-0430 IObit Malware Fighter v11.0.0.1274 - Denial of Service (DoS) — IObit Malware Fighter 5.5 Medium2024-01-22
CVE-2021-33630 NULL-ptr-deref in network sched — kernel 5.5 Medium2024-01-18
CVE-2023-6915 Kernel: null pointer dereference vulnerability in ida_free in lib/idr.c — Red Hat Enterprise Linux 8 6.2 Medium2024-01-15
CVE-2023-6683 Qemu: vnc: null pointer dereference in qemu_clipboard_request() — Red Hat Enterprise Linux 8 6.5 Medium2024-01-12
CVE-2024-21602 Junos OS Evolved: ACX7024, ACX7100-32C and ACX7100-48L: Traffic stops when a specific IPv4 UDP packet is received by the RE — Junos OS Evolved 7.5 High2024-01-12
CVE-2024-21664 Parsing JSON serialized payload without protected field can lead to segfault — jwx 4.3 Medium2024-01-09
CVE-2024-20661 Microsoft Message Queuing (MSMQ) Denial of Service Vulnerability — Windows 10 Version 1809 7.5 High2024-01-09
CVE-2023-51744 Siemens JT2GO 代码问题漏洞 — JT2Go 3.3 Low2024-01-09
CVE-2023-52312 Null pointer dereference in paddle.crop — PaddlePaddle 4.7 Medium2024-01-03
CVE-2023-52303 Segfault in paddle.put_along_axis — PaddlePaddle 4.7 Medium2024-01-03
CVE-2023-52302 Segfault in paddle.nextafter — PaddlePaddle 4.7 Medium2024-01-03

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