Goal Reached Thanks to every supporter — we hit 100%!

Goal: 1000 CNY · Raised: 1000 CNY

100.0%

CWE-476 (空指针解引用) — Vulnerability Class 1134

1134 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-2026-5590 net: ip/tcp: Null pointer dereference can be triggered by a race condition — Zephyr 6.4 Medium2026-04-05
CVE-2026-34761 Ella Core Panics Upon NGAP handover failure — core 5.8 Medium2026-04-02
CVE-2026-31931 Suricata tls: null dereference in tls.alpn rule keyword — suricata 7.5 High2026-04-02
CVE-2026-3776 Null pointer dereference in Foxit PDF Editor/Reader when accessing stamp annotation — Foxit PDF Editor 5.5 Medium2026-04-01
CVE-2026-34552 iccDEV: UB at IccTagLut.cpp — iccDEV 6.2 Medium2026-03-31
CVE-2026-34551 iccDEV: NPD in CIccTagLut16::Write() — iccDEV 6.2 Medium2026-03-31
CVE-2026-34541 iccDEV: UB in CIccCombinedConnectionConditions::CIccCombinedConnectionConditions() — iccDEV 6.2 Medium2026-03-31
CVE-2026-32696 NanoMQ HTTP Auth: Missing username/password can trigger a NULL-pointer strlen() in auth_http.c:set_data(), causing a process crash — SIGSEGV, remotely triggerable — nanomq 3.1 Low2026-03-30
CVE-2026-33996 LibJWT has NULL/bounds validation in JWK octet and RSA PSS parsing — libjwt 6.5 -2026-03-27
CVE-2026-33907 Ella Core Panics during NAS Authentication Response/Failure with missing IEs — core 6.5 Medium2026-03-27
CVE-2026-33903 Ella Core panics when processing a crafted NGAP LocationReport message — core 6.5 Medium2026-03-27
CVE-2026-0968 Libssh: libssh: denial of service due to malformed sftp message — Red Hat Enterprise Linux 10 3.1 Low2026-03-26
CVE-2026-4652 Remote denial of service via null pointer dereference — FreeBSD 7.5 -2026-03-26
CVE-2026-29785 NATS Server panic via malicious compression on leafnode port — nats-server 7.5 High2026-03-25
CVE-2026-32854 LibVNCServer httpd proxy NULL Pointer Dereference — LibVNCServer 7.5 -2026-03-24
CVE-2026-27651 NGINX ngx_mail_auth_http_module vulnerability — NGINX Open Source 7.5 High2026-03-24
CVE-2026-33853 NULL Pointer Dereference in MolotovCherry Android-ImageMagick7 — Android-ImageMagick7 5.5 Medium2026-03-24
CVE-2026-4751 NULL Pointer Dereference in tmate-io tmate — tmate 5.3 Medium2026-03-24
CVE-2026-4743 Null-Pointer Dereference Vulnerability in taurusxin/ncmdump — ncmdump 6.2 -2026-03-24
CVE-2026-33283 Ella Core panics on malformed ULNASTransport Message without a Request Type — core 6.5 Medium2026-03-23
CVE-2026-33282 Ella Core panics on malformed NGAP Location Report — core 7.5 High2026-03-23
CVE-2026-33179 libfuse: NULL Pointer Dereference and Memory Leak in io_uring Queue Initialization — libfuse 5.5 Medium2026-03-20
CVE-2026-33063 free5GC AUSF UE Authentication Panic on Nil SuciSupiMap Interface Conversion — ausf 7.5 -2026-03-20
CVE-2026-31973 NULL pointer dereference in samtools cram-size — samtools 7.5 -2026-03-18
CVE-2026-31964 HTSlib CRAM decoder has a NULL Pointer Dereference — htslib 5.3 -2026-03-18
CVE-2025-13406 Scanning for higher HART revision device leads into NULL pointer dereference in live list — smartLink SW-HT 7.5AIHighAI2026-03-17
CVE-2026-32778 libexpat 代码问题漏洞 — libexpat 2.9 Low2026-03-16
CVE-2026-32776 libexpat 代码问题漏洞 — libexpat 4.0 Medium2026-03-16
CVE-2026-28522 arduino-TuyaOpen WiFiUDP Null Pointer Dereference Denial of Service — arduino-TuyaOpen 6.5 Medium2026-03-15
CVE-2026-32249 NFA regex engine NULL pointer dereference affects Vim < 9.2.0137 — vim 5.3 Medium2026-03-12

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