logo
Home/CWEs/CWE-244/

CWE-244 - Improper Clearing of Heap Memory Before Release ('Heap Inspection')

  • Abstraction:Variant
  • Structure:Simple
  • Status:Draft
  • Release Date:2006-07-19
  • Latest Modification Date:2024-02-29

Weakness Name

Improper Clearing of Heap Memory Before Release ('Heap Inspection')

Description

Using realloc() to resize buffers that store sensitive information can leave the sensitive information exposed to attack, because it is not removed from memory.

When sensitive data such as a password or an encryption key is not removed from memory, it could be exposed to an attacker using a "heap inspection" attack that reads the sensitive data using memory dumps or other methods. The realloc() function is commonly used to increase the size of a block of allocated memory. This operation often requires copying the contents of the old memory block into a new and larger block. This operation leaves the contents of the original block intact but inaccessible to the program, preventing the program from being able to scrub sensitive data from memory. If an attacker can later examine the contents of a memory dump, the sensitive data could be exposed.

Common Consequences

Scope: Confidentiality, Other

Impact: Read Memory, Other

Notes: Be careful using vfork() and fork() in security sensitive code. The process state will not be cleaned up and will contain traces of data from past use.

Related Weaknesses

CWE-226Sensitive Information in Resource Not Removed Before Reuse

CWE-669Incorrect Resource Transfer Between Spheres