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-2021-37688 Null pointer dereference in TensorFlow Lite — tensorflow 7.8 High2021-08-12
CVE-2021-37648 Incorrect validation of `SaveV2` inputs in TensorFlow — tensorflow 7.8 High2021-08-12
CVE-2021-37659 Out of bounds read via null pointer dereference in TensorFlow — tensorflow 7.3 High2021-08-12
CVE-2021-37637 Null pointer dereference in `CompressElement` in TensorFlow — tensorflow 7.7 High2021-08-12
CVE-2021-37649 Null pointer dereference in `UncompressElement` in TensorFlow — tensorflow 7.7 High2021-08-12
CVE-2021-37647 Null pointer dereference in `SparseTensorSliceDataset` in TensorFlow — tensorflow 7.7 High2021-08-12
CVE-2021-37643 Null pointer dereference in `MatrixDiagPartOp` in TensorFlow — tensorflow 7.7 High2021-08-12
CVE-2021-37639 Null pointer dereference and heap OOB read in TensorFlow — tensorflow 8.4 High2021-08-12
CVE-2021-37638 Null pointer dereference in `RaggedTensorToTensor` in TensorFlow — tensorflow 7.7 High2021-08-12
CVE-2021-33717 JT2Go 和Teamcenter Visualization 代码问题漏洞 — JT2Go 5.5 -2021-08-10
CVE-2021-37615 Null pointer dereference in Exiv2::Internal::resolveLens0x319 — exiv2 4.7 Medium2021-08-09
CVE-2021-37616 Null pointer dereference in Exiv2::Internal::resolveLens0x8ff — exiv2 5.5 Medium2021-08-09
CVE-2021-33715 Siemens JT Utilities 代码问题漏洞 — JT Utilities 4.7 -2021-07-13
CVE-2021-33714 Siemens JT Utilities 代码问题漏洞 — JT Utilities 5.5 -2021-07-13
CVE-2010-4816 FreeBSD 代码问题漏洞 — FreeBSD and OpenBSD ftpd service 7.5 -2021-06-22
CVE-2021-33572 Denial-of-Service (DoS) Vulnerability — F-Secure Products 3.5 Low2021-06-21
CVE-2021-31618 NULL pointer dereference on specially crafted HTTP/2 request — Apache HTTP Server 7.5 -2021-06-15
CVE-2021-27607 SAP NetWeaver AS ABAP Business Server 代码问题漏洞 — SAP NetWeaver ABAP Server and ABAP Platform (Dispatcher) 7.5 -2021-06-09
CVE-2021-27630 SAP Netweaver 代码问题漏洞 — SAP NetWeaver ABAP Server and ABAP Platform (Enqueue Server) 7.5 -2021-06-09
CVE-2021-27631 SAP Netweaver和SAP NetWeaver AS ABAP Business Server 代码问题漏洞 — SAP NetWeaver ABAP Server and ABAP Platform (Enqueue Server) 7.5 -2021-06-09
CVE-2021-27632 SAP Netweaver 代码问题漏洞 — SAP NetWeaver ABAP Server and ABAP Platform (Enqueue Server) 7.5 -2021-06-09
CVE-2020-35503 QEMU 代码问题漏洞 — QEMU 6.0 -2021-06-02
CVE-2020-35505 QEMU 代码问题漏洞 — QEMU 6.0 -2021-05-28
CVE-2020-35504 QEMU 代码问题漏洞 — QEMU 6.0 -2021-05-28
CVE-2021-3514 389-ds-base 代码问题漏洞 — 389-ds-base 6.5 -2021-05-28
CVE-2021-30500 UPX 代码问题漏洞 — upx 7.8 -2021-05-26
CVE-2021-20196 QEMU 代码问题漏洞 — qemu 6.0 -2021-05-26
CVE-2021-3320 Type Confusion in 802154 ACK Frames Handling — zephyr 5.9 Medium2021-05-24
CVE-2020-10066 Incorrect Error Handling in Bluetooth HCI core — zephyr 2.5 Low2021-05-24
CVE-2021-3480 slapi-nis 代码问题漏洞 — slapi-nis 7.5 -2021-05-20

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