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

目标: 1000 元 · 已筹: 1336

100%

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

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

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

MITRE CWE 官方描述
CWE:CWE-843 使用不兼容类型访问资源(Type Confusion,类型混淆) 产品使用一种类型分配或初始化资源(如指针、对象或变量),但随后使用与该原始类型不兼容的类型访问该资源。 当产品使用不兼容类型访问该资源时,可能会因资源不具备预期属性而触发逻辑错误。在缺乏内存安全性的语言(如 C 和 C++)中,类型混淆可能导致越界内存访问。虽然这种弱点在解析包含多种不同嵌入对象类型的 C 语言数据时,常与联合体(unions)相关,但它也可能存在于任何能够以多种方式解释同一变量或内存位置的应用程序中。此弱点并非 C 和 C++ 所独有。例如,在 PHP 应用程序中,当期望标量(scalars)时提供数组参数,或反之,均可能触发错误。像 Perl 这样的语言,当变量被当作另一种类型访问时会自动进行类型转换,也可能存在此类问题。
常见影响 (1)
Availability, Integrity, ConfidentialityRead 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-13066 MongoDB Server 缓冲区错误漏洞 — MongoDB Server 6.5 Medium2026-07-22
CVE-2026-16420 Google Chrome 缓冲区错误漏洞 — Chrome--2026-07-21
CVE-2026-64608 Apache Fory C++ 反序列化注入漏洞 — Apache Fory--2026-07-21
CVE-2026-15776 Google Chrome 缓冲区错误漏洞 — Chrome--2026-07-14
CVE-2026-58541 Microsoft Windows DWM 缓冲区错误漏洞 — Windows 10 Version 1607 7.8 High2026-07-14
CVE-2026-57108 Microsoft .NET Core 缓冲区错误漏洞 — .NET 10.0 7.5 High2026-07-14
CVE-2026-54116 Microsoft SQL Server 缓冲区错误漏洞 — Microsoft SQL Server 2025 (CU 6) 6.5 Medium2026-07-14
CVE-2026-55025 Microsoft Office Excel 缓冲区错误漏洞 — Microsoft 365 Apps for Enterprise 7.8 High2026-07-14
CVE-2026-55022 Microsoft Office 缓冲区错误漏洞 — Microsoft 365 Apps for Enterprise 7.8 High2026-07-14
CVE-2026-55024 Microsoft Office Excel 缓冲区错误漏洞 — Microsoft 365 Apps for Enterprise 7.8 High2026-07-14
CVE-2026-50686 Microsoft Windows OLE 缓冲区错误漏洞 — Windows 10 Version 1607 8.1 High2026-07-14
CVE-2026-50421 Microsoft Windows Connected User Experiences and Telemetry 缓冲区错误漏洞 — Windows 10 Version 1607 7.8 High2026-07-14
CVE-2026-50390 Microsoft Windows Kernel 缓冲区错误漏洞 — Windows 10 Version 1607 7.0 High2026-07-14
CVE-2026-50381 Microsoft Composite Image File System Driver 缓冲区错误漏洞 — Windows 10 Version 21H2 5.5 Medium2026-07-14
CVE-2026-55772 CedarJava 缓冲区错误漏洞 — cedar-java 8.8 High2026-07-13
CVE-2026-58305 Samsung Open Source Escargot 缓冲区错误漏洞 — Escargot 6.1 Medium2026-07-09
CVE-2026-57254 Foxit PDF Editor 缓冲区错误漏洞 — Foxit PDF Editor 7.8 High2026-07-08
CVE-2026-58295 Microsoft Edge 缓冲区错误漏洞 — Microsoft Edge (Chromium-based) 8.3 High2026-07-03
CVE-2026-58290 Microsoft Edge 缓冲区错误漏洞 — Microsoft Edge (Chromium-based) 7.5 High2026-07-03
CVE-2026-58289 Microsoft Edge 缓冲区错误漏洞 — Microsoft Edge (Chromium-based) 9.0 Critical2026-07-03
CVE-2026-58285 Microsoft Edge 缓冲区错误漏洞 — Microsoft Edge (Chromium-based) 8.3 High2026-07-03
CVE-2026-58283 Microsoft Edge 缓冲区错误漏洞 — Microsoft Edge (Chromium-based) 8.1 High2026-07-03
CVE-2026-57975 Microsoft Edge 缓冲区错误漏洞 — Microsoft Edge (Chromium-based) 7.5 High2026-07-03
CVE-2026-14431 Google Chrome 缓冲区错误漏洞 — Chrome--2026-07-01
CVE-2026-14423 Google Chrome 缓冲区错误漏洞 — Chrome--2026-07-01
CVE-2026-54164 API Platform Core 缓冲区错误漏洞 — core 6.5 Medium2026-07-01
CVE-2025-15646 Best Practical Solutions HTML-Gumbo 缓冲区错误漏洞 — HTML::Gumbo--2026-07-01
CVE-2026-14148 Google Chrome 缓冲区错误漏洞 — Chrome--2026-06-30
CVE-2026-14119 Google Chrome 缓冲区错误漏洞 — Chrome--2026-06-30
CVE-2026-13967 Google Chrome 缓冲区错误漏洞 — Chrome--2026-06-30

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