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

Goal: 1000 CNY · Raised: 1000 CNY

100.0%

CWE-787 (跨界内存写) — Vulnerability Class 2200

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.

MITRE CWE Description
The product writes data past the end, or before the beginning, of the intended buffer.
Common Consequences (3)
IntegrityModify Memory, Execute Unauthorized Code or Commands
Write operations could cause memory corruption. In some cases, an adversary can modify control data such as return addresses in order to execute unexpected code.
AvailabilityDoS: Crash, Exit, or Restart
Attempting to access out-of-range, invalid, or unauthorized memory could cause the product to crash.
OtherUnexpected State
Subsequent write operations can produce undefined or unexpected results.
Mitigations (5)
RequirementsUse a language that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid. For example, many languages that perform their own memory management, such as Java and Perl, are not subject to buffer overflows. Other languages, such as Ada and C#, typically provide overflow protection, but the protection can be disabled by the programmer. Be wary that a lan…
Architecture and DesignUse a vetted library or framework that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid. Examples include the Safe C String Library (SafeStr) by Messier and Viega [REF-57], and the Strsafe.h library from Microsoft [REF-56]. These libraries provide safer versions of overflow-prone string-handling functions.
Operation, Build and CompilationUse automatic buffer overflow detection mechanisms that are offered by certain compilers or compiler extensions. Examples include: the Microsoft Visual Studio /GS flag, Fedora/Red Hat FORTIFY_SOURCE GCC flag, StackGuard, and ProPolice, which provide various mechanisms including canary-based detection and range/index checking. D3-SFCV (Stack Frame Canary Validation) from D3FEND [REF-1334] discusses…
Effectiveness: Defense in Depth
ImplementationConsider adhering to the following rules when allocating and managing an application's memory: Double check that the buffer is as large as specified. When using functions that accept a number of bytes to copy, such as strncpy(), be aware that if the destination buffer size is equal to the source buffer size, it may not NULL-terminate the string. Check buffer boundaries if accessing the buffer in a…
Operation, Build and CompilationRun or compile the software using features or extensions that randomly arrange the positions of a program's executable and libraries in memory. Because this makes the addresses unpredictable, it can prevent an attacker from reliably jumping to exploitable code. Examples include Address Space Layout Randomization (ASLR) [REF-58] [REF-60] and Position-Independent Executables (PIE) [REF-64]. Imported…
Effectiveness: Defense in Depth
Examples (2)
The following code attempts to save four different identification numbers into an array.
int id_sequence[3]; /* Populate the id array. */ id_sequence[0] = 123; id_sequence[1] = 234; id_sequence[2] = 345; id_sequence[3] = 456;
Bad · C
In the following code, it is possible to request that memcpy move a much larger segment of memory than assumed:
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)); ... }
Bad · C
CVE IDTitleCVSSSeverityPublished
CVE-2021-31837 Out of bounds write vulnerability in McAfee GetSusp — McAfee GetSusp 8.8 High2021-06-09
CVE-2021-27620 SAP Internet Graphics Server 缓冲区错误漏洞 — SAP Internet Graphics Service 5.9 -2021-06-09
CVE-2021-27622 SAP Internet Graphics Service 缓冲区错误漏洞 — SAP Internet Graphics Service 5.9 -2021-06-09
CVE-2021-27623 SAP Internet Graphics Server 缓冲区错误漏洞 — SAP Internet Graphics Service 5.9 -2021-06-09
CVE-2021-27624 SAP Internet Graphics Server 缓冲区错误漏洞 — SAP Internet Graphics Service 5.9 -2021-06-09
CVE-2021-27625 SAP Internet Graphics Server 缓冲区错误漏洞 — SAP Internet Graphics Service 5.9 -2021-06-09
CVE-2021-27626 SAP Internet Graphics Server 缓冲区错误漏洞 — SAP Internet Graphics Service 5.9 -2021-06-09
CVE-2021-27627 SAP Internet Graphics Server 缓冲区错误漏洞 — SAP Internet Graphics Service 5.9 -2021-06-09
CVE-2021-27628 SAP Netweaver 缓冲区错误漏洞 — SAP NetWeaver ABAP Server and ABAP Platform (Dispatcher) 7.5 -2021-06-09
CVE-2021-27633 SAP Netweaver 缓冲区错误漏洞 — SAP NetWeaver AS for ABAP (RFC Gateway) 7.5 -2021-06-09
CVE-2021-27634 SAP Netweaver 缓冲区错误漏洞 — SAP NetWeaver AS for ABAP (RFC Gateway) 7.5 -2021-06-09
CVE-2021-27387 Simcenter Femap 缓冲区错误漏洞 — Simcenter Femap 2020.2 7.8 -2021-06-08
CVE-2021-27390 Siemens Jt2go 缓冲区错误漏洞 — JT2Go 7.8 -2021-06-08
CVE-2021-27399 Simcenter Femap 缓冲区错误漏洞 — Simcenter Femap 2020.2 7.8 -2021-06-08
CVE-2021-31342 Solid Edge SE 缓冲区错误漏洞 — Siemens Solid Edge 8.8 -2021-06-08
CVE-2021-31343 Solid Edge SE 缓冲区错误漏洞 — Siemens Solid Edge 8.8 -2021-06-08
CVE-2021-23169 Industrial Light And Magic(lim) OpenEXR 缓冲区错误漏洞 — OpenEXR 9.8 -2021-06-08
CVE-2021-3490 Linux kernel eBPF bitwise ops ALU32 bounds tracking — Linux kernel 7.8 High2021-06-04
CVE-2021-3546 QEMU 缓冲区错误漏洞 — QEMU 8.2 -2021-06-02
CVE-2010-3843 Ettercap 缓冲区错误漏洞 — ettercap 7.8 -2021-05-28
CVE-2021-27488 Siemens Solid Edge 缓冲区错误漏洞 — Datakit Software libraries embedded in Luxion KeyShot software 7.8 -2021-05-27
CVE-2021-30498 libcaca 缓冲区错误漏洞 — libcaca 7.8 -2021-05-26
CVE-2018-25011 libwebp 缓冲区错误漏洞 — libwebp 9.8 -2021-05-21
CVE-2020-36328 libwebp 缓冲区错误漏洞 — libwebp 9.8 -2021-05-21
CVE-2021-31473 Foxit Reader 缓冲区错误漏洞 — Reader 7.8 -2021-05-21
CVE-2021-3517 libxml2 缓冲区错误漏洞 — libxml2 8.6 -2021-05-19
CVE-2021-29514 Heap out of bounds write in `RaggedBinCount` — tensorflow 2.5 Low2021-05-14
CVE-2021-29603 Heap OOB write in TFLite — tensorflow 2.5 Low2021-05-14
CVE-2021-29558 Heap buffer overflow in `SparseSplit` — tensorflow 2.5 Low2021-05-14
CVE-2021-29566 Heap OOB access in `Dilation2DBackpropInput` — tensorflow 2.5 Low2021-05-14

Vulnerabilities classified as CWE-787 (跨界内存写) represent 2200 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.