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-2960 TRENDnet TEW-637AP/TEW-638APB HTTP Request goahead sub_41DED0 null pointer dereference — TEW-637AP 6.5 Medium2025-03-30
CVE-2025-2959 TRENDnet TEW-410APB HTTP Request httpd sub_4019A0 null pointer dereference — TEW-410APB 6.5 Medium2025-03-30
CVE-2025-2957 TRENDnet TEW-411BRP+ HTTP Request httpd sub_401DB0 null pointer dereference — TEW-411BRP+ 6.5 Medium2025-03-30
CVE-2025-2956 TRENDnet TI-G102i HTTP Request lighttpd plugins_call_handle_uri_raw null pointer dereference — TI-G102i 6.5 Medium2025-03-30
CVE-2025-2926 HDF5 H5Ocache.c H5O__cache_chk_serialize null pointer dereference — HDF5 3.3 Low2025-03-28
CVE-2025-31163 fig2dev segmentation fault — fig2dev 6.6 Medium2025-03-28
CVE-2025-31181 Gnuplot: gnuplot segmentation fault on x11_graphics 6.2 Medium2025-03-27
CVE-2025-31180 Gnuplot: gnuplot segmentation fault on canvas_text 6.2 Medium2025-03-27
CVE-2025-31179 Gnuplot: gnuplot segmentation fault on xstrftime 6.2 Medium2025-03-27
CVE-2025-31178 Gnuplot: gnuplot segmentation fault on getannotatestring 6.2 Medium2025-03-27
CVE-2025-31176 Gnuplot: gnuplot segmentation fault on plot3d_points 6.2 Medium2025-03-27
CVE-2024-11499 Hitachi Energy RTU500 代码问题漏洞 — RTU500 4.9 Medium2025-03-25
CVE-2024-10037 Hitachi Energy RTU500 代码问题漏洞 — RTU500 4.4 Medium2025-03-25
CVE-2025-2588 Hercules Augeas fa.c re_case_expand null pointer dereference — Augeas 3.3 Low2025-03-21
CVE-2025-0312 NULL Pointer Dereference in ollama/ollama — ollama/ollama 6.5 -2025-03-20
CVE-2025-2487 389-ds-base: null pointer dereference leads to denial of service 4.9 Medium2025-03-18
CVE-2025-21170 Substance3D - Modeler | NULL Pointer Dereference (CWE-476) — Substance3D - Modeler 5.5 Medium2025-03-11
CVE-2025-27170 Illustrator | NULL Pointer Dereference (CWE-476) — Illustrator 5.5 Medium2025-03-11
CVE-2025-27176 InDesign Desktop | NULL Pointer Dereference (CWE-476) — InDesign Desktop 5.5 Medium2025-03-11
CVE-2025-27179 InDesign Desktop | NULL Pointer Dereference (CWE-476) — InDesign Desktop 5.5 Medium2025-03-11
CVE-2025-24997 DirectX Graphics Kernel File Denial of Service Vulnerability — Windows 10 Version 21H2 4.4 Medium2025-03-11
CVE-2025-22837 Arkcompiler Ets Runtime has a NULL pointer dereference vulnerability — OpenHarmony 3.3 Low2025-03-04
CVE-2025-21097 Arkcompiler Ets Runtime has a NULL pointer dereference vulnerability — OpenHarmony 3.3 Low2025-03-04
CVE-2025-21084 Arkcompiler Ets Runtime has an NULL pointer dereference vulnerability — OpenHarmony 3.8 Low2025-03-04
CVE-2025-1877 D-Link DAP-1562 HTTP POST Request pure_auth_check null pointer dereference — DAP-1562 6.5 Medium2025-03-03
CVE-2024-53024 NULL Pointer Dereference in Display — Snapdragon 7.8 High2025-03-03
CVE-2025-20647 MediaTek Modem 代码问题漏洞 — MT2735, MT2737, MT6739, MT6761, MT6762, MT6762D, MT6762M, MT6763, MT6765, MT6765T, MT6767, MT6768, MT6769, MT6769K, MT6769S, MT6769T, MT6769Z, MT6771, MT6779, MT6781, MT6783, MT6785, MT6785T, MT6785U, MT6789, MT6833, MT6833P, MT6853, MT6853T, MT6855, MT6855T, MT6873, MT6875, MT6875T, MT6877, MT6877T, MT6877TT, MT6879, MT6880, MT6883, MT6885, MT6886, MT6889, MT6890, MT6891, MT6893, MT6895, MT6895TT, MT6896, MT6980, MT6980D, MT6983, MT6983T, MT6985, MT6985T, MT6989, MT6989T, MT6990, MT8666, MT8667, MT8675, MT8765, MT8766, MT8768, MT8781, MT8786, MT8788, MT8789, MT8791, MT8791T, MT8795T, MT8797, MT8798 7.5 -2025-03-03
CVE-2024-53877 NVIDIA CUDA toolkit 代码问题漏洞 — CUDA Toolkit 3.3 Low2025-02-25
CVE-2025-1632 libarchive bsdunzip.c list null pointer dereference — libarchive 3.3 Low2025-02-24
CVE-2025-1470 Eclipse OMR: Null pointer dereference vulnerability — Eclipse OMR 7.5 -2025-02-21

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