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-2020-13583 Micrium uC-HTTP 代码问题漏洞 — Micrium 7.5 -2021-02-10
CVE-2020-13575 Genivia gSOAP 代码问题漏洞 — gSOAP 7.5 High2021-02-10
CVE-2021-23883 Null Pointer Dereference vulnerability in McAfee Endpoint Security (ENS) — Endpoint Security (ENS) for Windows 4.0 Medium2021-02-10
CVE-2020-13574 Genivia gSOAP 代码问题漏洞 — Genivia 7.5 -2021-02-10
CVE-2020-13577 Genivia gSOAP 代码问题漏洞 — Genivia 7.5 -2021-02-10
CVE-2020-13578 Genivia gSOAP 代码问题漏洞 — Genivia 7.5 -2021-02-10
CVE-2020-12514 Pepper+Fuchs Comtrol IO-Link Master NULL Pointer Dereference — Comtrol IO-Link Master 6.6 Medium2021-01-22
CVE-2020-8569 Kubernetes CSI snapshot-controller DoS — CSI Snapshotter 4.3 Medium2021-01-21
CVE-2021-0206 Junos OS: NFX Series, SRX Series: PFE may crash upon receipt of specific packet when SSL Proxy is configured. — Junos OS 7.5 High2021-01-15
CVE-2020-27279 Red Lion Controls Crimson 代码问题漏洞 — Crimson 3.1 7.5 -2021-01-06
CVE-2020-35507 GNU Binutils 代码问题漏洞 — binutils 5.5 -2021-01-04
CVE-2020-35496 GNU Binutils 代码问题漏洞 — binutils 5.5 -2021-01-04
CVE-2020-35495 GNU Binutils 代码问题漏洞 — binutils 5.5 -2021-01-04
CVE-2020-25692 OpenLDAP 代码问题漏洞 — openldap 7.5 -2020-12-08
CVE-2020-26235 Segmentation fault in Rust time crate — time 5.3 Medium2020-11-24
CVE-2020-26213 Denial of Service in teler — teler 5.9 Medium2020-11-06
CVE-2020-24421 Adobe InDesign 15.1.2 NULL Pointer Dereference Bug — InDesign 5.5 Medium2020-10-21
CVE-2020-25858 Qualcomm QCMAP 代码问题漏洞 — Qualcomm QCMAP 7.5 -2020-10-15
CVE-2020-9746 Exploitable NULL pointer deref could lead to arbitrary code execution — Flash Player 7.0 High2020-10-14
CVE-2020-15204 Segfault in Tensorflow — tensorflow 5.3 Medium2020-09-25
CVE-2020-15209 Null pointer dereference in tensorflow-lite — tensorflow 5.9 Medium2020-09-25
CVE-2020-3407 Cisco IOS XE Software RESTCONF and NETCONF-YANG Access Control List Denial of Service Vulnerability — Cisco IOS XE Software 8.6 -2020-09-24
CVE-2020-3552 Cisco Aironet Access Points Ethernet Wired Clients Denial of Service Vulnerability — Cisco Aironet Access Point Software 7.4 -2020-09-24
CVE-2020-3517 Cisco FXOS and NX-OS Software Cisco Fabric Services Denial of Service Vulnerability — Cisco NX-OS Software 8.6 -2020-08-27
CVE-2020-5762 Grandstream HT800 series 代码问题漏洞 — Grandstream HT800 Series 7.5 -2020-07-29
CVE-2020-10600 OSIsoft PI System — PI Data Archive 5.9 Medium2020-07-24
CVE-2020-10602 OSIsoft PI Data Archive 代码问题漏洞 — OSIsoft PI System multiple products and versions 5.3 -2020-07-24
CVE-2020-3481 Clam AntiVirus (ClamAV) Software Null Pointer Dereference Vulnerability — ClamAV 7.5 High2020-07-20
CVE-2020-10739 Istio 代码问题漏洞 — istio/envoy 7.5 High2020-06-02
CVE-2020-10703 Red Hat libvirt 代码问题漏洞 — libvirt 6.5 Medium2020-06-02

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