CWE-786Access of Memory Location Before Start of Buffer

PUBLISHEDweakness record
released 2009-10-29 · last modified 2025-12-11

Metadata

CWE ID:
CWE-786
摘要:
Base
结构:
Simple
状态:
Incomplete
发布日期:
2009-10-29
更新日期:
2025-12-11

名称

Access of Memory Location Before Start of Buffer

描述

The product reads or writes to a buffer using an index or pointer that references a memory location prior to the beginning of the buffer.

This typically occurs when a pointer or its index is decremented to a position before the buffer, when pointer arithmetic results in a position before the beginning of the valid memory location, or when a negative index is used.

常见后果

范围:
Confidentiality
影响:
Read Memory
注释:
For an out-of-bounds read, the attacker may have access to sensitive information. If the sensitive information contains system details, such as the current buffer's position in memory, this knowledge can be used to craft further attacks, possibly with more severe consequences.
范围:
Integrity, Availability
影响:
Modify Memory, DoS: Crash, Exit, or Restart
注释:
Out of bounds memory access will very likely result in the corruption of relevant memory, and perhaps instructions, possibly leading to a crash.
范围:
Integrity
影响:
Modify Memory, Execute Unauthorized Code or Commands
注释:
If the corrupted memory can be effectively controlled, it may be possible to execute arbitrary code. If the corrupted memory is data rather than instructions, the system will continue to function with improper changes, possibly in violation of an implicit or explicit policy.

相关 CWE