CWE WEAKNESSES / CWE-404
CWE-404
Improper Resource Shutdown or Release
Class EXPLOIT LIKELIHOOD: MEDIUM
What it is
The product does not release or incorrectly releases a resource before it is made available for re-use.
When a resource is created or allocated, the developer is responsible for properly releasing the resource as well as accounting for all potential paths of expiration or invalidation, such as a set period of time or revocation.
Impact
| Availability, Other | DoS: Resource Consumption (Other), Varies by Context |
| Confidentiality | Read Application Data |
Mitigations
- [Requirements]Use a language that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid.For example, languages such as Java, Ruby, and Lisp perform automatic garbage collection that releases memory for objects that have been deallocated.
- [Implementation] It is good practice to be responsible for freeing all resources you allocate and to be consistent with how and where you free memory in a function. If you allocate memory that you intend to free upon completion of the function, you must be sure to free the memory at all exit points for that function including error conditions.
- [Implementation] Memory should be allocated/freed using matching functions such as malloc/free, new/delete, and new[]/delete[].
- [Implementation] When releasing a complex object or structure, ensure that you properly dispose of all of its member components, not just the object itself.
Real-world CVE examples
- CVE-1999-1127 — Does not shut down named pipe connections if malformed data is sent.
- CVE-2001-0830 — Sockets not properly closed when attacker repeatedly connects and disconnects from server.
- CVE-2002-1372 — Chain: Return values of file/socket operations are not checked (CWE-252), allowing resultant consumption of file descriptors (CWE-772).
Related weaknesses
Test & detect
Browse all common weaknesses, check related exploited CVEs, or map to ATT&CK techniques.
Source: MITRE CWE. View on cwe.mitre.org →