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-2025-30267 QTS, QuTS hero — QTS 7.5 -2025-08-29
CVE-2025-30263 Qsync Central — Qsync Central 7.5 -2025-08-29
CVE-2025-30262 Qsync Central — Qsync Central 7.5 -2025-08-29
CVE-2025-29889 File Station 5 — File Station 5 7.5 -2025-08-29
CVE-2025-29888 File Station 5 — File Station 5 7.5 -2025-08-29
CVE-2025-29886 File Station 5 — File Station 5 7.5 -2025-08-29
CVE-2025-29882 QTS, QuTS hero — QTS 7.5 -2025-08-29
CVE-2025-29879 File Station 5 — File Station 5 7.5 -2025-08-29
CVE-2025-29878 File Station 5 — File Station 5 7.5 -2025-08-29
CVE-2025-29875 File Station 5 — File Station 5 7.5 -2025-08-29
CVE-2025-29874 File Station 5 — File Station 5 7.5 -2025-08-29
CVE-2025-40779 Kea crash upon interaction between specific client options and subnet selection — Kea 7.5 High2025-08-27
CVE-2025-20262 Cisco Nexus 3000 and 9000 Series Switches Protocol Independent Multicast Version 6 Denial of Service Vulnerability — Cisco NX-OS Software 5.0 Medium2025-08-27
CVE-2025-29901 File Station 5 — File Station 5 7.5AIHighAI2025-08-26
CVE-2025-9396 ckolivas lrzip strtol_l.c __GI_____strtol_l_internal null pointer dereference — lrzip 3.3 Low2025-08-24
CVE-2025-9384 appneta tcpreplay parse_args.c tcpedit_post_args null pointer dereference — tcpreplay 3.3 Low2025-08-24
CVE-2025-54989 Firebird XDR Message Parsing NULL Pointer Dereference Denial-of-Service Vulnerability — firebird 5.3 Medium2025-08-15
CVE-2025-54409 AIDE null pointer dereference when reading incorrectly encoded xattr attributes from database (local DoS) — aide 6.2 Medium2025-08-14
CVE-2025-52585 BIG-IP Client SSL profile vulnerability — BIG-IP 7.5 High2025-08-13
CVE-2025-53716 Windows Local Security Authority Subsystem Service (LSASS) Denial of Service Vulnerability — Windows 10 Version 1809 6.5 Medium2025-08-12
CVE-2025-53154 Windows Ancillary Function Driver for WinSock Elevation of Privilege Vulnerability — Windows 10 Version 1507 7.8 High2025-08-12
CVE-2025-53141 Windows Ancillary Function Driver for WinSock Elevation of Privilege Vulnerability — Windows 10 Version 1507 7.8 High2025-08-12
CVE-2025-49567 Illustrator | NULL Pointer Dereference (CWE-476) — Illustrator 5.5 Medium2025-08-12
CVE-2025-8865 YugabyteDB 安全漏洞 — YugabyteDB 6.5 -2025-08-11
CVE-2025-8844 NASM Netwide Assember preproc.c parse_smacro_template null pointer dereference — Netwide Assember 3.3 Low2025-08-11
CVE-2025-8835 JasPer Image Color Space Conversion jas_image.c jas_image_chclrspc null pointer dereference — JasPer 3.3 Low2025-08-11
CVE-2025-26690 communication dsoftbus has a NULL pointer vulnerability — OpenHarmony 3.3 Low2025-08-11
CVE-2025-8735 GNU cflow Lexer c.c yylex null pointer dereference — cflow 3.3 Low2025-08-08
CVE-2025-8586 libav MPEG File Parser utils.c ff_seek_frame_binary null pointer dereference — libav 3.3 Low2025-08-05
CVE-2025-8584 libav AVI File Parser buffer.c av_buffer_unref null pointer dereference — libav 3.3 Low2025-08-05

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