The product dereferences a pointer that contains a location for memory that was previously valid, but is no longer valid.
Extended Description
When a product releases memory, but it maintains a pointer to that memory, then the memory might be re-allocated at a later time. If the original pointer is accessed to read or write data, then this could cause the product to read or modify data that is in use by a different function or process. Depending on how the newly-allocated memory is used, this could lead to a denial of service, information exposure, or code execution.
Chain: a message having an unknown message type may cause a reference to uninitialized memory resulting in a null pointer dereference (CWE-476) or dangling pointer (CWE-825), possibly crashing the system or causing heap corruption.
read of value at an offset into a structure after the offset is no longer valid
Related Attack Patterns (CAPEC)
N/A
Attack TTPs
N/A
Modes of Introduction
Phase
Note
None listed.
Common Consequences
Impact: Read Memory — Notes: If the expired pointer is used in a read operation, an attacker might be able to control data read in by the application.
Impact: DoS: Crash, Exit, or Restart — Notes: If the expired pointer references a memory location that is not accessible to the product, or points to a location that is "malformed" (such as NULL) or larger than expected by a read or write operation, then a crash may occur.
Impact: Execute Unauthorized Code or Commands — Notes: If the expired pointer is used in a function call, or points to unexpected data in a write operation, then code execution may be possible.
Potential Mitigations
Architecture and Design: Choose a language that provides automatic memory management. (N/A)
Implementation: When freeing pointers, be sure to set them to NULL once they are freed. However, the utilization of multiple or complex data structures may lower the usefulness of this strategy. (N/A)
Applicable Platforms
C (N/A, Undetermined)
C++ (N/A, Undetermined)
Demonstrative Examples
Intro: The following code shows a simple example of a use after free error:
Body: When an error occurs, the pointer is immediately freed. However, this pointer is later incorrectly used in the logError function.
char* ptr = (char*)malloc (SIZE); if (err) { abrt = 1; free(ptr); } ... if (abrt) { logError("operation aborted before commit", ptr); }
Intro: The following code shows a simple example of a double free error:
Body: Double free vulnerabilities have two common (and sometimes overlapping) causes:
Maintenance: There are close relationships between incorrect pointer dereferences and other weaknesses related to buffer operations. There may not be sufficient community agreement regarding these relationships. Further study is needed to determine when these relationships are chains, composites, perspective/layering, or other types of relationships. As of September 2010, most of the relationships are being captured as chains.
Terminology: Many weaknesses related to pointer dereferences fall under the general term of "memory corruption" or "memory safety." As of September 2010, there is no commonly-used terminology that covers the lower-level variants.