目标达成 感谢每一位支持者 — 我们达成了 100% 目标!

目标: 1000 元 · 已筹: 1336

100%

CWE-476 空指针解引用 类漏洞列表 1266

CWE-476 空指针解引用 类弱点 1266 条 CVE 漏洞汇总,含 AI 中文分析。

CWE-476空指针解引用属于内存安全类漏洞,指程序在指针为NULL时仍尝试访问其指向的内存。攻击者通常通过构造特定输入触发空指针,导致程序崩溃引发拒绝服务,或在特定架构下利用该异常改变执行流以执行恶意代码。开发者应避免在解引用前未验证指针有效性,通过添加空值检查、使用静态分析工具检测潜在风险,并确保代码逻辑能妥善处理无效指针情况,从而从根本上消除隐患。

MITRE CWE 官方描述
CWE:CWE-476 NULL Pointer Dereference(空指针解引用) 英文:The product dereferences a pointer that it expects to be valid but is NULL. 译文:产品解引用了一个它预期为有效但实际上为 NULL 的指针。
常见影响 (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.
缓解措施 (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.
代码示例 (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 ID标题CVSS风险等级Published
CVE-2026-18064 NASA cFS HS应用空指针解引用漏洞 — Core Flight System (cFS) Health & Safety (HS) Application 7.5 High2026-07-30
CVE-2026-58161 Apache Traffic Server 异常处理不当漏洞 — Apache Traffic Server 7.5 High2026-07-29
CVE-2026-67184 GeneralSandman TinyWeb 异常处理不当漏洞 — TinyWeb 7.5 High2026-07-28
CVE-2026-47427 GitHub MCP Server 异常处理不当漏洞 — github-mcp-server 7.5 High2026-07-28
CVE-2026-66749 sdelements lets-chat 异常处理不当漏洞 — lets-chat 6.5 Medium2026-07-28
CVE-2026-17500 llama.cpp json-schema-to-grammar.cpp 空指针解引用漏洞 — llama.cpp 5.3 Medium2026-07-27
CVE-2026-45816 Apache NimBLE 异常处理不当漏洞 — Apache NimBLE--2026-07-24
CVE-2026-50032 Mz Automation libIEC61850 异常处理不当漏洞 — libIEC61850 7.5 High2026-07-23
CVE-2026-13065 MongoDB Server 异常处理不当漏洞 — MongoDB Server 6.5 Medium2026-07-22
CVE-2026-13070 MongoDB Server 异常处理不当漏洞 — MongoDB Server 5.3 Medium2026-07-22
CVE-2026-55717 NLnet Labs Unbound 异常处理不当漏洞 — Unbound 5.9 Medium2026-07-22
CVE-2026-47709 strukturag libheif 异常处理不当漏洞 — libheif--2026-07-21
CVE-2026-10678 zephyrproject zephyr 异常处理不当漏洞 — zephyr 8.1 High2026-07-21
CVE-2026-47143 Capstone Engine Capstone 异常处理不当漏洞 — capstone 5.1 Medium2026-07-21
CVE-2026-47276 NanoMQ 异常处理不当漏洞 — nanomq 6.5 Medium2026-07-20
CVE-2026-47275 NanoMQ 异常处理不当漏洞 — nanomq 2.6 Low2026-07-20
CVE-2026-63762 SurrealDB 异常处理不当漏洞 — surrealdb 6.0 Medium2026-07-20
CVE-2026-15352 NASA core Flight System (cFS) Health and Safety Application 异常处理不当漏洞 — Core Flight System (cFS) Health & Safety (HS) Application 7.5 High2026-07-16
CVE-2026-62299 CoreDNS 异常处理不当漏洞 — coredns 5.3 Medium2026-07-16
CVE-2026-62309 CoreDNS 异常处理不当漏洞 — coredns 7.5 High2026-07-16
CVE-2026-52865 F5 NGINX Ingress Controller 异常处理不当漏洞 — NGINX Ingress Controller 6.5 Medium2026-07-15
CVE-2026-56168 Microsoft Windows SMB Server 异常处理不当漏洞 — Windows 10 Version 21H2 6.5 Medium2026-07-14
CVE-2026-50673 Microsoft Windows Kernel 竞争条件问题漏洞 — Windows 10 Version 1607 7.8 High2026-07-14
CVE-2026-50366 Microsoft Active Directory Domain Services 异常处理不当漏洞 — Windows 10 Version 1607 6.5 Medium2026-07-14
CVE-2026-50315 Microsoft Windows Image Acquisition 异常处理不当漏洞 — Windows 11 Version 24H2 7.8 High2026-07-14
CVE-2026-57976 Microsoft Active Directory Domain Services 异常处理不当漏洞 — Windows 10 Version 1607 6.5 Medium2026-07-14
CVE-2026-10670 zephyrproject zephyr 异常处理不当漏洞 — zephyr 5.5 Medium2026-07-14
CVE-2026-15690 open62541 资源管理错误漏洞 — open62541 3.1 Low2026-07-14
CVE-2026-58101 JONASBN Crypt::OpenSSL::X509 异常处理不当漏洞 — Crypt::OpenSSL::X509--2026-07-13
CVE-2026-55783 M2Team NanaZip 异常处理不当漏洞 — NanaZip--2026-07-10

CWE-476(空指针解引用) 是常见的弱点类别,本平台收录该类弱点关联的 1266 条 CVE 漏洞。