2200 vulnerabilities classified as CWE-787 (跨界内存写). AI Chinese analysis included.
CWE-787 represents a critical memory management weakness where software incorrectly writes data beyond the allocated boundaries of a buffer. This flaw typically arises from insufficient bounds checking, allowing attackers to overwrite adjacent memory locations with malicious payloads. Exploitation often leads to arbitrary code execution, denial of service, or privilege escalation by corrupting critical system structures or control flow data. Developers mitigate this risk by implementing rigorous input validation and utilizing safe programming practices that enforce strict boundary checks before any memory operation. Employing modern languages with automatic memory management, such as Rust or Java, further reduces exposure by preventing direct pointer arithmetic. Additionally, static analysis tools and fuzzing techniques help identify potential out-of-bounds conditions during the development lifecycle, ensuring that buffer operations remain within their intended limits and preserving application integrity against memory corruption attacks.
int id_sequence[3]; /* Populate the id array. */ id_sequence[0] = 123; id_sequence[1] = 234; id_sequence[2] = 345; id_sequence[3] = 456;int returnChunkSize(void *) { /* if chunk info is valid, return the size of usable memory, * else, return -1 to indicate an error */ ... } int main() { ... memcpy(destBuf, srcBuf, (returnChunkSize(destBuf)-1)); ... }| CVE ID | Title | CVSS | Severity | Published |
|---|---|---|---|---|
| CVE-2018-7509 | Delta Electronics WPLSoft 安全漏洞 — Delta Electronics WPLSoft | 8.8 | - | 2018-05-04 |
| CVE-2018-8837 | Advantech WebAccess HMI Designer 安全漏洞 — Advantech WebAccess HMI Designer | 7.8 | - | 2018-04-25 |
| CVE-2017-9634 | Mitsubishi Electric E-Designer 安全漏洞 — E-Designer | 9.8 | - | 2018-04-17 |
| CVE-2018-7517 | Omron CX-Supervisor 缓冲区错误漏洞 — Omron CX-Supervisor | 5.3 | - | 2018-03-21 |
| CVE-2018-1171 | Joyent SmartOS 缓冲区错误漏洞 — Joyent SmartOS | 7.0 | - | 2018-03-19 |
| CVE-2017-16747 | Delta Industrial Automation Screen Editor 安全漏洞 — Delta Electronics Delta Industrial Automation Screen Editor | 7.8 | - | 2018-03-15 |
| CVE-2017-17410 | Bitdefender Internet Security 安全漏洞 — Bitdefender Internet Security | 8.8 | - | 2017-12-21 |
| CVE-2017-9938 | Siemens SIMATIC Logon 安全漏洞 — SIMATIC Logon All versions before V1.6 | 7.5 | - | 2017-08-08 |
| CVE-2017-7523 | Cygwin 缓冲区错误漏洞 — cygwin | 7.5 | - | 2017-07-21 |
| CVE-2017-6867 | 多款Siemens产品输入验证漏洞 — Siemens SIMATIC WinCC | 4.9 | - | 2017-05-11 |
Vulnerabilities classified as CWE-787 (跨界内存写) represent 2200 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.