BaseIncomplete

CWE-788Access of Memory Location After End of Buffer

Category: memory

Description

The product reads or writes to a buffer using an index or pointer that references a memory location after the end of the buffer. This typically occurs when a pointer or its index is incremented to a position after the buffer; or when pointer arithmetic results in a position after the buffer.

Common consequences· 3

  • 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. Other attacks leading to lack of availability are possible, including putting the program into an infinite loop.
  • Integrity — Modify Memory, Execute Unauthorized Code or Commands
    If the memory accessible by the attacker can be effectively controlled, it may be possible to execute arbitrary code, as with a standard buffer overflow. If the attacker can overwrite a pointer's worth of memory (usually 32 or 64 bits), they can redirect a function pointer to their own malicious code. Even when the attacker can only modify a single byte arbitrary code execution can be possible. Sometimes this is because the same problem can be exploited repeatedly to the same effect. Other times it is because the attacker can overwrite security-critical application-specific data -- such as a flag indicating whether the user is an administrator.

References

  1. https://cwe.mitre.org/data/definitions/788.html

Related by meaning· 6

Nearest entities by semantic similarity across the cs-graph corpus.

CWE
Buffer Over-read
CWE
Access of Memory Location Before Start of Buffer
CWE
Improper Restriction of Operations within the Bounds of a Memory Buffer
CWE
Buffer Under-read
CWE
Buffer Access with Incorrect Length Value
CWE
Use of Out-of-range Pointer Offset
Sourced from MITRE CWE 4.20. Curated for EU compliance use cases by Adam Lundqvist, Founder at SQUR.