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

目标: 1000 元 · 已筹: 1336

100%

CWE-843 使用不兼容类型访问资源(类型混淆) 类漏洞列表 466

CWE-843 使用不兼容类型访问资源(类型混淆) 类弱点 466 条 CVE 漏洞汇总,含 AI 中文分析。

CWE-843类型混淆漏洞指程序以不兼容类型访问已分配资源,导致逻辑错误。攻击者常利用此缺陷操纵内存布局,引发数据泄露或代码执行。开发者应严格实施类型检查,确保变量声明与使用类型一致,并在C等无内存安全语言中引入静态分析工具,从源头杜绝类型不匹配风险,保障系统稳定性。

MITRE CWE 官方描述
CWE:CWE-843 使用不兼容类型访问资源(Type Confusion,类型混淆) 产品使用一种类型分配或初始化资源(如指针、对象或变量),但随后使用与该原始类型不兼容的类型访问该资源。 当产品使用不兼容类型访问该资源时,可能会因资源不具备预期属性而触发逻辑错误。在缺乏内存安全性的语言(如 C 和 C++)中,类型混淆可能导致越界内存访问。虽然这种弱点在解析包含多种不同嵌入对象类型的 C 语言数据时,常与联合体(unions)相关,但它也可能存在于任何能够以多种方式解释同一变量或内存位置的应用程序中。此弱点并非 C 和 C++ 所独有。例如,在 PHP 应用程序中,当期望标量(scalars)时提供数组参数,或反之,均可能触发错误。像 Perl 这样的语言,当变量被当作另一种类型访问时会自动进行类型转换,也可能存在此类问题。
常见影响 (1)
Availability, Integrity, Confidentiality Read Memory, Modify Memory, Execute Unauthorized Code or Commands, DoS: Crash, Exit, or Restart
When a memory buffer is accessed using the wrong type, it could read or write memory out of the bounds of the buffer, if the allocated buffer is smaller than the type that the code is attempting to access, leading to a crash and possibly code execution.
代码示例 (2)
The following code uses a union to support the representation of different types of messages. It formats messages differently, depending on their type.
#define NAME_TYPE 1 #define ID_TYPE 2 struct MessageBuffer { int msgType; union { char *name; int nameID; }; }; int main (int argc, char **argv) { struct MessageBuffer buf; char *defaultMessage = "Hello World"; buf.msgType = NAME_TYPE; buf.name = defaultMessage; printf("Pointer of buf.name is %p\n", buf.name); /* This particular value for nameID is used to make the code architecture-independent. If coming from untrusted input, it could be any value. */ buf.nameID = (int)(defaultMessage + 1); printf("Pointer of buf.name is now %p\n", buf.name); if (buf.msgType == NAME_TYPE) { printf("Message: %
Bad · C
The following PHP code accepts a value, adds 5, and prints the sum.
$value = $_GET['value']; $sum = $value + 5; echo "value parameter is '$value'<p>"; echo "SUM is $sum";
Bad · PHP
CVE ID 标题 CVSS 风险等级 Published
CVE-2026-80161 Adobe Acrobat Reader 类型混淆漏洞 — Adobe Acrobat 7.8 High 2026-09-08
CVE-2026-81401 Microsoft Excel 信息泄露漏洞 — Microsoft 365 Apps for Enterprise 5.5 Medium 2026-09-08
CVE-2026-72938 PowerPoint 信息泄露漏洞 — Microsoft 365 Apps for Enterprise 6.5 Medium 2026-09-08
CVE-2026-69324 Windows 性能监视器权限提升漏洞 — Windows 10 Version 1607 7.8 High 2026-09-08
CVE-2026-77889 Windows DHCP 服务器服务拒绝服务漏洞 — Windows 10 Version 1607 7.5 High 2026-09-08
CVE-2026-77890 Windows DHCP服务器拒绝服务漏洞 — Windows 10 Version 1607 7.5 High 2026-09-08
CVE-2026-77888 Windows DHCP Server 服务拒绝漏洞 — Windows 10 Version 1607 7.5 High 2026-09-08
CVE-2026-77499 Windows DHCP Server 远程拒绝服务漏洞 — Windows 10 Version 1607 7.5 High 2026-09-08
CVE-2026-77494 Windows 动态主机配置协议服务器拒绝服务漏洞 — Windows 10 Version 1607 7.5 High 2026-09-08
CVE-2026-70584 Windows核心消息传递提权漏洞 — Windows 10 Version 1607 7.8 High 2026-09-08
CVE-2026-82057 MongoDB Server 持久化拒绝服务漏洞 — MongoDB Server 6.5 Medium 2026-09-08
CVE-2026-20508 MediaTek Chipset 缓冲区错误漏洞 — MediaTek chipset - - 2026-09-07
CVE-2026-85051 Google Chrome 缓冲区错误漏洞 — Chrome - - 2026-09-03
CVE-2026-85046 Google Chrome 缓冲区错误漏洞 — Chrome - - 2026-09-03
CVE-2026-72984 Microsoft Edge 缓冲区错误漏洞 — Microsoft Edge (Chromium-based) 8.8 High 2026-08-28
CVE-2026-80183 OpenStack Keystone 缓冲区错误漏洞 — Keystone 7.1 High 2026-08-26
CVE-2026-80185 BlueZ 缓冲区错误漏洞 — Red Hat Enterprise Linux 10 5.7 Medium 2026-08-25
CVE-2026-79045 Google Chrome 缓冲区错误漏洞 — Chrome - - 2026-08-25
CVE-2026-78956 Google Chrome 缓冲区错误漏洞 — Chrome - - 2026-08-25
CVE-2026-79227 Google Chrome 缓冲区错误漏洞 — Chrome - - 2026-08-25
CVE-2026-78905 Google Chrome 缓冲区错误漏洞 — Chrome - - 2026-08-25
CVE-2026-79209 Google Chrome 缓冲区错误漏洞 — Chrome - - 2026-08-25
CVE-2026-78938 Google Chrome 缓冲区错误漏洞 — Chrome - - 2026-08-25
CVE-2026-79236 Google Chrome 缓冲区错误漏洞 — Chrome - - 2026-08-25
CVE-2026-78904 Google Chrome 缓冲区错误漏洞 — Chrome - - 2026-08-25
CVE-2026-79175 Google Chrome 缓冲区错误漏洞 — Chrome - - 2026-08-25
CVE-2026-79769 Sparkle Motion Nokogiri 缓冲区错误漏洞 — nokogiri 5.5 Medium 2026-08-25
CVE-2026-77237 FreeRTOS Kernel 缓冲区错误漏洞 — FreeRTOS-Kernel 6.5 Medium 2026-08-21
CVE-2026-72844 Lean 4 缓冲区错误漏洞 — lean4 6.3 Medium 2026-08-20
CVE-2026-16919 IBM AIX 缓冲区错误漏洞 — AIX 9.8 Critical 2026-08-19

CWE-843(使用不兼容类型访问资源(类型混淆)) 是常见的弱点类别,本平台收录该类弱点关联的 466 条 CVE 漏洞。