CWE-843 - Type confusion

Description

The program allocates or initializes a resource such as a pointer, object, or variable using one type, but it later accesses that resource using a type that is incompatible with the original type. When the program accesses the resource using an incompatible type, this could trigger logical errors because the resource does not have expected properties. In languages without memory safety, such as C and C++, type confusion can lead to out-of-bounds memory access. While this weakness is frequently associated with unions when parsing data with many different embedded object types in C, it can be present in any application that can interpret the same variable or memory location in multiple ways. The weakness is introduced during Implementation stage.


Latest vulnerabilities for CWE-843

Remote code execution in Microsoft Edge 2025-07-02
Critical Yes
Remote code execution in Google Chrome 2025-07-01
Critical Yes Zero Day
Multiple vulnerabilities in IBM Cloud Pak for AIOps 2025-06-30
Critical Yes Public exploit
Multiple vulnerabilities in IBM Spectrum Protect Plus 2025-06-25
High Yes Public exploit
Kibana update for Google Chromium 2025-06-24
High Yes Public exploit

References

Description of CWE-843 on Mitre website