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-10711 Linux kernel 代码问题漏洞 — Kernel 5.9 Medium2020-05-22
CVE-2020-1995 PAN-OS: Management server rasmgr denial of service — PAN-OS 4.9 Medium2020-05-13
CVE-2020-1730 libssh 代码问题漏洞 — libssh 5.3 Medium2020-04-13
CVE-2020-5736 Amcrest cameras和NVR 代码问题漏洞 — Amcrest 6.5 -2020-04-08
CVE-2020-8859 ELOG Electronic Logbook 代码问题漏洞 — Electronic Logbook 7.5 -2020-03-23
CVE-2019-14876 Red Hat newlib libc library 代码问题漏洞 — newlib 6.5 -2020-03-19
CVE-2019-14875 Red Hat newlib libc library 代码问题漏洞 — newlib 6.5 -2020-03-19
CVE-2019-14874 Red Hat newlib libc library 代码问题漏洞 — newlib 6.5 -2020-03-19
CVE-2019-14878 Red Hat newlib libc library 代码问题漏洞 — newlib 6.5 -2020-03-19
CVE-2019-14877 Red Hat newlib libc library 代码问题漏洞 — newlib 6.5 -2020-03-19
CVE-2019-14873 Red Hat newlib libc library 代码问题漏洞 — newlib 6.5 -2020-03-19
CVE-2019-14872 Red Hat newlib libc library 代码问题漏洞 — newlib 6.5 -2020-03-19
CVE-2019-14871 Red Hat Newlib 代码问题漏洞 — newlib 6.5 -2020-03-18
CVE-2020-7062 Null Pointer Dereference in PHP Session Upload Progress — PHP 7.5 High2020-02-27
CVE-2019-3995 ELOG 代码问题漏洞 — ELOG 7.5 -2019-12-17
CVE-2019-10207 Linux kernel 安全漏洞 — kernel 5.5 -2019-11-25
CVE-2019-14847 Samba 代码问题漏洞 — samba 6.5 -2019-11-06
CVE-2019-5010 Python X509证书解析器代码问题漏洞 — Python 7.5 -2019-10-31
CVE-2019-15680 TightVNC 代码问题漏洞 — TightVNC 7.5 -2019-10-29
CVE-2019-12654 Cisco IOS and IOS XE Software Session Initiation Protocol Denial of Service Vulnerability — Cisco IOS 15.0(1)XA2 7.5 -2019-09-25
CVE-2019-12647 Cisco IOS and IOS XE Software IP Ident Denial of Service Vulnerability — Cisco IOS 7.5 -2019-09-25
CVE-2019-13542 3S-Smart Software Solutions CODESYS Control 代码问题漏洞 — 3S-Smart Software Solutions GmbH CODESYS V3 OPC UA Server 6.5 -2019-09-17
CVE-2019-5055 NETGEAR N300 代码问题漏洞 — N300 WNR2000v5 7.5 -2019-09-11
CVE-2019-5054 NETGEAR N300 代码问题漏洞 — N300 WNR2000v5 7.5 -2019-09-11
CVE-2019-1900 Cisco Integrated Management Controller Unauthenticated Denial of Service Vulnerability — Cisco Unified Computing System (Management Software) 7.5 -2019-08-21
CVE-2019-10140 Linux kernel 代码问题漏洞 — kernel: 5.5 -2019-08-15
CVE-2018-16871 Linux kernel 代码问题漏洞 — kernel: 7.5 -2019-07-30
CVE-2019-1010162 Jsish 代码问题漏洞 — jsi 6.5 -2019-07-23
CVE-2019-1922 Cisco IP Phone 7800 and 8800 Series Session Initiation Protocol Denial of Service Vulnerability — Cisco IP Phone 8800 Series Software 7.5 -2019-07-06
CVE-2017-7655 Eclipse Mosquitto 代码问题漏洞 — Eclipse Mosquitto 7.5 -2019-03-27

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