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-1748 Softing Secure Integration Server NULL Pointer Dereference — Secure Integration Server 7.5 High2022-08-17
CVE-2022-2547 Softing Secure Integration Server NULL Pointer Dereference — Secure Integration Server 7.5 High2022-08-17
CVE-2022-31618 NVIDIA vGPU Software 代码问题漏洞 — NVIDIA Virtual GPU Software and NVIDIA Cloud Gaming 5.5 Medium2022-08-05
CVE-2022-35245 BIG-IP APM access policy vulnerability CVE-2022-35245 — BIG-IP APM 7.5 High2022-08-04
CVE-2022-34651 BIG-IP TLS 1.3 iRule vulnerability CVE-2022-34651 — BIG-IP 7.5 High2022-08-04
CVE-2022-2549 NULL Pointer Dereference in gpac/gpac — gpac/gpac 5.5 -2022-07-27
CVE-2022-1671 Linux kernel 代码问题漏洞 — Kernel 7.1 -2022-07-26
CVE-2022-22210 Junos OS: QFX5000 Series and MX Series: An l2alm crash leading to an FPC crash can be observed in VxLAN scenario — Junos OS 6.5 Medium2022-07-20
CVE-2022-2476 WavPack 代码问题漏洞 — Wavpack 5.5 -2022-07-19
CVE-2022-34761 多款Schneider Electric产品代码问题漏洞 — OPC UA Modicon Communication Module 7.5 High2022-07-13
CVE-2022-2309 NULL Pointer Dereference in lxml/lxml — lxml/lxml 7.5 -2022-07-05
CVE-2022-2279 NULL Pointer Dereference in bfabiszewski/libmobi — bfabiszewski/libmobi 5.5 -2022-07-01
CVE-2022-1852 Linux kernel 代码问题漏洞 — kernel 5.5 -2022-06-30
CVE-2022-2231 NULL Pointer Dereference in vim/vim — vim/vim 5.5 -2022-06-28
CVE-2022-31077 Malicious response from KubeEdge can crash CSI Driver controller server — kubeedge 4.0 Medium2022-06-27
CVE-2022-31076 Malicious Message can crash CloudCore in KubeEdge — kubeedge 4.2 Medium2022-06-27
CVE-2022-2208 NULL Pointer Dereference in vim/vim — vim/vim 5.5 -2022-06-27
CVE-2022-2121 OFFIS DCMTK NULL Pointer Dereference — DCMTK 7.5 High2022-06-24
CVE-2022-2085 Artifex Software Ghostscript 代码问题漏洞 — GhostScript 5.5 -2022-06-16
CVE-2022-32230 SMBv3 FileNormalizedNameInformation NULL Pointer Dereference — Windows 10 Version 20H2 7.5 High2022-06-14
CVE-2022-29224 Segmentation fault leading to crash in Envoy — envoy 5.9 Medium2022-06-09
CVE-2022-1789 Linux kernel 代码问题漏洞 — kernel 6.8 -2022-05-31
CVE-2022-28189 NVIDIA GPU Display Driver 代码问题漏洞 — NVIDIA GPU Display Driver 5.5 Medium2022-05-17
CVE-2022-1725 NULL Pointer Dereference in vim/vim — vim/vim 5.5 -2022-05-16
CVE-2022-1674 NULL Pointer Dereference in function vim_regexec_string at regexp.c:2733 in vim/vim — vim/vim 6.2 -2022-05-12
CVE-2022-1649 Null pointer dereference in libr/bin/format/mach0/mach0.c in radareorg/radare2 in radareorg/radare2 — radareorg/radare2 7.1 -2022-05-10
CVE-2022-29031 Siemens JT2GO和Siemens Teamcenter Visualization 代码问题漏洞 — JT2Go 5.5 -2022-05-10
CVE-2022-29029 Siemens JT2GO和Siemens Teamcenter Visualization 代码问题漏洞 — JT2Go 5.5 -2022-05-10
CVE-2022-1620 NULL Pointer Dereference in function vim_regexec_string at regexp.c:2729 in vim/vim — vim/vim 6.2 -2022-05-08
CVE-2022-29491 F5 BIG-IP多款产品代码问题漏洞 — BIG-IP LTM, Advanced WAF, ASM, and APM 7.5 High2022-05-05

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