CWE-124 - Buffer Underwrite ('Buffer Underflow')

Description

The software 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. Out of bounds memory access will very likely result in the corruption of relevant memory, and perhaps instructions, possibly leading to a crash. 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. The consequences would only be limited by how the affected data is used, such as an adjacent memory location that is used to specify whether the user has special privileges. When the consequence is arbitrary code execution, this can often be used to subvert any other security service. The weakness is introduced during Architecture and Design, Implementation stages.

Latest vulnerabilities for CWE-124

References

Description of CWE-124 on Mitre website