CWE Database
/

CWE-763

Back to CWE list

CWE-763

Release of Invalid Pointer or Reference

Base
Incomplete

Description

The product attempts to return a memory resource to the system, but it calls the wrong release function or calls the appropriate release function incorrectly.

{"xhtml:p":["This weakness can take several forms, such as:"],"xhtml:ul":[{"xhtml:li":["The memory was allocated, explicitly or implicitly, via one memory management method and deallocated using a different, non-compatible function (CWE-762).","The function calls or memory management routines chosen are appropriate, however they are used incorrectly, such as in CWE-761."]}]}

Common Consequences

Scope

Integrity
Availability
Confidentiality

Impact

Modify Memory, DoS: Crash, Exit, or Restart, Execute Unauthorized Code or Commands

Potential Mitigations

Implementation

Only call matching memory management functions. Do not mix and match routines. For example, when you allocate a buffer with malloc(), dispose of the original pointer with free().

Implementation

When programming in C++, consider using smart pointers provided by the boost library to help correctly and consistently manage memory.

Architecture and Design

Use a vetted library or framework that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid. For example, glibc in Linux provides protection against free of invalid pointers.

Architecture and Design

Use a language that provides abstractions for memory allocation and deallocation.

CVE-2019-11930

function "internally calls 'calloc' and returns a pointer at an index... inside the allocated buffer. This led to freeing invalid memory."

Applicable Platforms

Memory-Unsafe
C
C++

Security Training

Train your team to recognize and prevent security threats with our comprehensive security awareness program.

Start Training

Vulnerability Scanning

Discover vulnerabilities in your applications and infrastructure before attackers do.

Scan Now