CWE-826Premature Release of Resource During Expected Lifetime

PUBLISHEDweakness record
released 2010-09-27 · last modified 2025-12-11

Metadata

CWE ID:
CWE-826
摘要:
Base
结构:
Simple
状态:
Incomplete
发布日期:
2010-09-27
更新日期:
2025-12-11

名称

Premature Release of Resource During Expected Lifetime

描述

The product releases a resource that is still intended to be used by itself or another actor.

This weakness focuses on errors in which the product should not release a resource, but performs the release anyway. This is different than a weakness in which the product releases a resource at the appropriate time, but it maintains a reference to the resource, which it later accesses. For this weakness, the resource should still be valid upon the subsequent access. When a product releases a resource that is still being used, it is possible that operations will still be taken on this resource, which may have been repurposed in the meantime, leading to issues similar to CWE-825. Consequences may include denial of service, information exposure, or code execution.

常见后果

范围:
Confidentiality
影响:
Read Application Data, Read Memory
注释:
If the released resource is subsequently reused or reallocated, then a read operation on the original resource might access sensitive data that is associated with a different user or entity.
范围:
Availability
影响:
DoS: Crash, Exit, or Restart
注释:
When the resource is released, the software might modify some of its structure, or close associated channels (such as a file descriptor). When the software later accesses the resource as if it is valid, the resource might not be in an expected state, leading to resultant errors that may lead to a crash.
范围:
Integrity, Confidentiality, Availability
影响:
Execute Unauthorized Code or Commands, Modify Application Data, Modify Memory
注释:
When the resource is released, the software might modify some of its structure. This might affect logic in the sections of code that still assume the resource is active. If the released resource is related to memory and is used in a function call, or points to unexpected data in a write operation, then code execution may be possible upon subsequent accesses.

相关 CWE