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-2024-9484 Avast Antivirus 安全漏洞 — Antivirus 5.1 Medium2024-10-04
CVE-2024-9483 Uninitialized variable in digital signiture verification may crash the application — Antivirus 5.1 Medium2024-10-04
CVE-2024-0125 NVIDIA CUDA toolkit 代码问题漏洞 — CUDA Toolkit 3.3 Low2024-10-03
CVE-2024-8454 PLANET Technology switch devices - Swctrl service DoS attack — GS-4210-24PL4C hardware 2.0 5.3 Medium2024-09-30
CVE-2024-47290 Huawei HarmonyOS 安全漏洞 — HarmonyOS 5.5 Medium2024-09-27
CVE-2024-20436 Cisco IOS XE Software 安全漏洞 — Cisco IOS XE Software 8.6 High2024-09-25
CVE-2024-43759 Illustrator | NULL Pointer Dereference (CWE-476) — Illustrator 5.5 Medium2024-09-13
CVE-2024-38233 Windows Networking Denial of Service Vulnerability — Windows 10 Version 1607 7.5 High2024-09-10
CVE-2024-38232 Windows Networking Denial of Service Vulnerability — Windows 10 Version 1607 7.5 High2024-09-10
CVE-2023-30756 Siemens SIMATIC 代码问题漏洞 — SIMATIC CP 1242-7 V2 (incl. SIPLUS variants) 5.9 Medium2024-09-10
CVE-2023-30755 Siemens SIMATIC 代码问题漏洞 — SIMATIC CP 1242-7 V2 (incl. SIPLUS variants) 4.4 Medium2024-09-10
CVE-2023-28827 Siemens SIMATIC 代码问题漏洞 — SIMATIC CP 1242-7 V2 (incl. SIPLUS variants) 5.9 Medium2024-09-10
CVE-2023-51368 QTS, QuTS hero — QTS 5.4 Medium2024-09-06
CVE-2024-42058 Zyxel多款产品 代码问题漏洞 — ATP series firmware 7.5 High2024-09-03
CVE-2024-8006 NULL pointer dereference in libpcap before 1.10.5 with remote packet capture support — libpcap 4.4 Medium2024-08-30
CVE-2024-8235 Libvirt: crash of virtinterfaced via virconnectlistinterfaces() 6.2 Medium2024-08-30
CVE-2024-20446 Cisco NX-OS Software DHCPv6 Relay Agent Denial of Service Vulnerability — Cisco NX-OS Software 8.6 High2024-08-28
CVE-2024-41866 Adobe Indesign 2024 DOC File Parsing Null Pointer Dereference — InDesign Desktop 5.5 Medium2024-08-14
CVE-2024-39395 Adobe Indesign 2024 DOC File Parsing Null Pointer Dereference — InDesign Desktop 5.5 Medium2024-08-14
CVE-2024-34136 Adobe Illustrator PSD File Parsing Null Pointer dereference — Illustrator 5.5 Medium2024-08-14
CVE-2024-34138 Adobe Illustrator CGM File Parsing Division By zero — Illustrator 5.5 Medium2024-08-14
CVE-2024-34137 Adobe Illustrator 2024 CGM File Parsing Null Pointer Dereference — Illustrator 5.5 Medium2024-08-14
CVE-2024-41164 BIG-IP MPTCP vulnerability — BIG-IP 5.9 Medium2024-08-14
CVE-2024-38145 Windows Layer-2 Bridge Network Driver Denial of Service Vulnerability — Windows 10 Version 1809 7.5 High2024-08-13
CVE-2024-38146 Windows Layer-2 Bridge Network Driver Denial of Service Vulnerability — Windows 11 Version 24H2 7.5 High2024-08-13
CVE-2024-38126 Windows Network Address Translation (NAT) Denial of Service Vulnerability — Windows 10 Version 1809 7.5 High2024-08-13
CVE-2024-7006 Libtiff: null pointer dereference in tif_dirinfo.c 7.5 High2024-08-08
CVE-2024-43167 Unbound: null pointer dereference in unbound — Red Hat Enterprise Linux 6 2.8 Low2024-08-08
CVE-2024-23357 NULL Pointer Dereference in HLOS — Snapdragon 6.2 Medium2024-08-05
CVE-2024-39948 Dahua NVR 安全漏洞 — NVR4XXX 7.5 High2024-07-31

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