Goal Reached Thanks to every supporter — we hit 100%!

Goal: 1000 CNY · Raised: 1000 CNY

100.0%

CWE-822 (非可信指针解引用) — Vulnerability Class 172

172 vulnerabilities classified as CWE-822 (非可信指针解引用). AI Chinese analysis included.

CWE-822 represents a critical memory safety weakness where software incorrectly interprets an untrusted input value as a valid memory address. This flaw typically arises when developers fail to validate or sanitize external data before casting it to a pointer type. Attackers exploit this vulnerability by supplying malicious pointer values that reference unintended memory regions. If the application dereferences this pointer for a write operation, the attacker can corrupt critical state variables, trigger a denial of service through a system crash, or potentially achieve arbitrary code execution by overwriting function pointers. To mitigate this risk, developers must implement rigorous input validation, ensuring that all external values are strictly checked against expected ranges and types before any pointer conversion occurs. Additionally, employing static analysis tools and memory-safe programming languages can help detect and prevent these dangerous dereferences during the development lifecycle.

MITRE CWE Description
The product obtains a value from an untrusted source, converts this value to a pointer, and dereferences the resulting pointer. An attacker can supply a pointer for memory locations that the product is not expecting. If the pointer is dereferenced for a write operation, the attack might allow modification of critical state variables, cause a crash, or execute code. If the dereferencing operation is for a read, then the attack might allow reading of sensitive data, cause a crash, or set a variable to an unexpected value (since the value will be read from an unexpected memory location). There are several variants of this weakness, including but not necessarily limited to: The untrusted value is directly invoked as a function call. In OS kernels or drivers where there is a boundary between "userland" and privileged memory spaces, an untrusted pointer might enter through an API or system call (see CWE-781 for one such example). Inadvertently accepting the value from an untrusted control sphere when it did not have to be accepted as input at all. This might occur when the code was originally developed to be run by a single user in a non-networked environment, and the code is then ported to or otherwise exposed to a networked environment.
Common Consequences (3)
ConfidentialityRead Memory
If the untrusted pointer is used in a read operation, an attacker might be able to read sensitive portions of memory.
AvailabilityDoS: Crash, Exit, or Restart
If the untrusted pointer references a memory location that is not accessible to the product, or points to a location that is "malformed" or larger than expected by a read or write operation, the application may terminate unexpectedly.
Integrity, Confidentiality, AvailabilityExecute Unauthorized Code or Commands, Modify Memory
If the untrusted pointer is used in a function call, or points to unexpected data in a write operation, then code execution may be possible.
CVE IDTitleCVSSSeverityPublished
CVE-2021-27496 Siemens Solid Edge 安全漏洞 — Datakit Software libraries embedded in Luxion KeyShot software 7.8 -2021-05-27
CVE-2020-26997 Siemens Solid Edge 安全漏洞 — Solid Edge SE2020 7.8 -2021-04-22
CVE-2020-1899 Facebook HHVM 缓冲区错误漏洞 — HHVM 7.5 -2021-03-11
CVE-2021-22649 Luxion KeyShot 缓冲区错误漏洞 — Luxion KeyShot 7.8 -2021-02-23
CVE-2020-27003 JT2Go 缓冲区错误漏洞 — JT2Go 7.3 -2021-02-09
CVE-2020-27259 Omron CX-One — CX-One 8.8 -2021-02-09
CVE-2020-27288 Delta Electronics TPEditor 缓冲区错误漏洞 — TPEditor 7.8 -2021-01-26
CVE-2020-26991 Siemens Jt2go和Siemens Teamcenter Visualization 代码问题漏洞 — JT2Go 7.3 -2021-01-12
CVE-2020-27289 Delta Electronics CNCSoft-B 代码问题漏洞 — Delta Electronics 7.8 -2021-01-11
CVE-2020-27277 Delta Electronics Industrial Automation DOPSoft 代码问题漏洞 — Delta Electronics 7.8 -2021-01-11
CVE-2020-14392 Gentoo 缓冲区错误漏洞 — perl-dbi 5.5 -2020-09-16
CVE-2020-17392 Corel Parallels Desktop 安全漏洞 — Desktop 8.8 -2020-08-25
CVE-2019-13334 Foxit PhantomPDF 缓冲区错误漏洞 — PhantomPDF 7.8 -2020-02-07
CVE-2018-19029 LCDS LAquis SCADA 代码问题漏洞 — LCDS Laquis SCADA 7.8 -2019-02-05
CVE-2018-12548 Eclipse OpenJ9 缓冲区错误漏洞 — Eclipse OpenJ9 9.8 -2019-01-31
CVE-2018-17893 LAquis SCADA 安全漏洞 — LAquis SCADA 8.8 -2018-10-17
CVE-2018-14811 Fuji Electric V-Server VPR 安全漏洞 — V-Server 9.8 -2018-09-26
CVE-2018-7497 多款Advantech产品安全漏洞 — WebAccess 9.8 -2018-05-15
CVE-2018-7502 Beckhoff TwinCAT Kernal驱动程序权限许可和访问控制漏洞 — Beckhoff TwinCAT PLC products 7.8 -2018-03-23
CVE-2018-7525 Omron CX-Supervisor 缓冲区错误漏洞 — Omron CX-Supervisor 5.3 -2018-03-21
CVE-2017-16728 Advantech WebAccess 安全漏洞 — Advantech WebAccess 7.5 -2018-01-05
CVE-2017-12719 Advantech WebAccess 安全漏洞 — Advantech WebAccess 7.5 -2017-11-06

Vulnerabilities classified as CWE-822 (非可信指针解引用) represent 172 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.