logo
Home/CWEs/CWE-911/

CWE-911 - Improper Update of Reference Count

  • Abstraction:Base
  • Structure:Simple
  • Status:Incomplete
  • Release Date:2013-02-21
  • Latest Modification Date:2025-04-03

Weakness Name

Improper Update of Reference Count

Description

The product uses a reference count to manage a resource, but it does not update or incorrectly updates the reference count.

Reference counts can be used when tracking how many objects contain a reference to a particular resource, such as in memory management or garbage collection. When the reference count reaches zero, the resource can be de-allocated or reused because there are no more objects that use it. If the reference count accidentally reaches zero, then the resource might be released too soon, even though it is still in use. If all objects no longer use the resource, but the reference count is not zero, then the resource might not ever be released.

Common Consequences

Scope: Availability

Impact: DoS: Resource Consumption (Memory), DoS: Resource Consumption (Other)

Notes: An adversary that can cause a resource counter to become inaccurate may be able to create situations where resources are not accounted for and not released, thus causing resources to become scarce for future needs.

Scope: Availability

Impact: DoS: Crash, Exit, or Restart

Notes: An adversary that can cause a resource counter to become inaccurate may be able to force an error that causes the product to crash or exit out of its current operation.

Related Weaknesses

CWE-664Improper Control of a Resource Through its Lifetime

CWE-672Operation on a Resource after Expiration or Release

CWE-772Missing Release of Resource after Effective LifetimeHigh