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-27113 libxml2 安全漏洞 — libxml2 2.9 Low2025-02-18
CVE-2025-1373 FFmpeg MOV Parser mov.c mov_read_trak null pointer dereference — FFmpeg 3.3 Low2025-02-17
CVE-2025-1371 GNU elfutils eu-read readelf.c handle_dynamic_symtab null pointer dereference — elfutils 3.3 Low2025-02-17
CVE-2025-21155 Substance3D - Stager | NULL Pointer Dereference (CWE-476) — Substance3D - Stager 5.5 Medium2025-02-11
CVE-2025-21125 InDesign Desktop | NULL Pointer Dereference (CWE-476) — InDesign Desktop 5.5 Medium2025-02-11
CVE-2025-24031 PAM-PKCS#11 vulnerable to segmentation fault on ctrl-c/ctrl-d when asked for PIN — pam_pkcs11 7.5 -2025-02-10
CVE-2025-1103 D-Link DIR-823X HTTP POST Request set_wifi_blacklists null pointer dereference — DIR-823X 6.5 Medium2025-02-07
CVE-2025-24483 Humming Heads Defense Platform 代码问题漏洞 — Defense Platform Home Edition 6.2 -2025-02-06
CVE-2025-20045 BIG-IP SIP MRF Vulnerability — BIG-IP 7.5 High2025-02-05
CVE-2025-0696 frozen 代码问题漏洞 — Frozen 5.3 Medium2025-01-27
CVE-2025-0430 Belledonne Communications Linphone-Desktop NULL Pointer Dereference — Linphone-Desktop 7.5 High2025-01-17
CVE-2025-0492 D-Link DIR-823X FUN_00412244 null pointer dereference — DIR-823X 7.5 High2025-01-15
CVE-2024-5198 OpenVPN Data Channel Offload 代码问题漏洞 — ovpn-dco 5.5 -2025-01-15
CVE-2024-48857 Vulnerabilities in TIFF and PCX Image Codecs Impact QNX Software Development Platform — QNX Software Development Platform (SDP) 7.5 High2025-01-14
CVE-2025-21285 Microsoft Message Queuing (MSMQ) Denial of Service Vulnerability — Windows 10 Version 1507 7.5 High2025-01-14
CVE-2023-42786 Fortinet FortiOS 代码问题漏洞 — FortiOS 6.4 Medium2025-01-14
CVE-2023-42785 Fortinet FortiOS 代码问题漏洞 — FortiOS 6.4 Medium2025-01-14
CVE-2025-0223 IObit Protected Folder IOCTL IURegistryFilter.sys 0x8001E010 null pointer dereference — Protected Folder 5.5 Medium2025-01-05
CVE-2025-0222 IObit Protected Folder IOCTL IUProcessFilter.sys 0x8001E004 null pointer dereference — Protected Folder 5.5 Medium2025-01-05
CVE-2025-0221 IOBit Protected Folder IOCTL pffilter.sys 0x22200c null pointer dereference — Protected Folder 5.5 Medium2025-01-05
CVE-2023-6603 Ffmpeg: null pointer dereference in ffmpeg hls parsing 7.5 High2024-12-31
CVE-2020-9085 Huawei 4G Router B612 安全漏洞 — HUAWEI 4G Router B612 5.3 Medium2024-12-27
CVE-2024-56430 OpenFHE 安全漏洞 — OpenFHE 2.9 Low2024-12-25
CVE-2024-41883 Null Pointer Dereference — XRN-420S 9.8 -2024-12-24
CVE-2024-41884 Null Pointer Dereference — XRN-420S 9.1 -2024-12-24
CVE-2023-21586 Acrobat Reader | NULL Pointer Dereference (CWE-476) — Acrobat Reader 5.5 Medium2024-12-18
CVE-2022-40733 Microsoft win32kbase.sys 代码问题漏洞 — Windows 5.0 Medium2024-12-18
CVE-2022-40732 Microsoft win32kbase.sys 代码问题漏洞 — Windows 5.0 Medium2024-12-18
CVE-2024-56318 Matter 安全漏洞 — Matter 7.5 -2024-12-18
CVE-2024-12662 IObit Advanced SystemCare Utimate IOCTL AscRegistryFilter.sys 0x8001E040 null pointer dereference — Advanced SystemCare Utimate 5.5 Medium2024-12-16

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