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-2022-23025 F5 BIG-IP 代码问题漏洞 — BIG-IP 7.5 -2022-01-25
CVE-2022-23022 F5 BIG-IP 代码问题漏洞 — BIG-IP 7.5 -2022-01-25
CVE-2022-23017 F5 BIG-IP 代码问题漏洞 — BIG-IP 7.5 -2022-01-25
CVE-2022-23016 F5 BIG-IP 代码问题漏洞 — BIG-IP 7.5 -2022-01-25
CVE-2021-4145 QEMU 代码问题漏洞 — QEMU 3.8 -2022-01-25
CVE-2022-0326 NULL Pointer Dereference in mruby/mruby — mruby/mruby 5.5 -2022-01-21
CVE-2021-34406 NVIDIA SHIELD TV 代码问题漏洞 — SHIELD TV 4.7 Medium2022-01-18
CVE-2022-0240 NULL Pointer Dereference in mruby/mruby — mruby/mruby 7.5 -2022-01-17
CVE-2021-44741 Adobe Acrobat Pro DC NULL Pointer Dereference could lead to Application-denial-of-service — Acrobat Reader 3.3 Low2022-01-14
CVE-2021-44740 Adobe Acrobat Pro DC NULL Pointer Dereference could lead to Application-denial-of-service — Acrobat Reader 3.3 Low2022-01-14
CVE-2021-40027 Huawei HarmonyOS 缓冲区错误漏洞 — HarmonyOS 7.5 -2022-01-07
CVE-2021-4188 NULL Pointer Dereference in mruby/mruby — mruby/mruby 7.5 -2021-12-30
CVE-2021-43750 Adobe Premiere Rush NULL Pointer Dereference Local Denial-of-Service — Premiere Rush 5.5 Medium2021-12-20
CVE-2021-43749 Adobe Premiere Rush NULL Pointer Dereference Local Denial-of-Service — Premiere Rush 5.5 Medium2021-12-20
CVE-2021-43748 Adobe Premiere Rush NULL Pointer Dereference Local Denial-of-Service — Premiere Rush 5.5 Medium2021-12-20
CVE-2021-44224 Possible NULL dereference or SSRF in forward proxy configurations in Apache HTTP Server 2.4.51 and earlier — Apache HTTP Server 8.2 -2021-12-20
CVE-2021-4110 NULL Pointer Dereference in mruby/mruby — mruby/mruby 7.5 -2021-12-15
CVE-2021-43016 Adobe InCopy NULL Pointer Dereference Application Denial of Service — InCopy 5.5 Medium2021-11-22
CVE-2021-42733 Adobe Bridge NULL Pointer Dereference could lead to Application denial-of-service — Bridge 5.5 Medium2021-11-22
CVE-2021-40774 Adobe Prelude NULL Pointer Dereference Application Denial of Service — Prelude 5.5 Medium2021-11-22
CVE-2021-40773 Adobe Prelude NULL Pointer Dereference Application Denial of Service — Prelude 5.5 Medium2021-11-22
CVE-2021-42268 Adobe Animate FLA File Parsing Null Pointer Dereference Application Denial of Service — Animate 5.5 Medium2021-11-18
CVE-2021-40761 Adobe After Effects NULL Pointer Dereference Application Denial of Service — After Effects 5.5 Medium2021-11-18
CVE-2021-40756 Adobe After Effects NULL Pointer Dereference Application Denial of Service — After Effects 5.5 Medium2021-11-18
CVE-2021-42376 BusyBox 代码问题漏洞 — busybox 5.5 -2021-11-15
CVE-2021-42373 BusyBox 代码问题漏洞 — busybox 4.4 -2021-11-15
CVE-2021-41208 Incomplete validation in boosted trees code — tensorflow 8.8 High2021-11-05
CVE-2021-41215 Null pointer exception in `DeserializeSparse` — tensorflow 5.5 Medium2021-11-05
CVE-2021-41217 Null pointer exception when `Exit` node is not preceded by `Enter` op — tensorflow 5.5 Medium2021-11-05
CVE-2021-1122 Nvidia vGPU Software 代码问题漏洞 — NVIDIA Virtual GPU Software 5.5 Medium2021-10-29

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