CWE-667: Improper Locking

ClassDraft

The product does not properly acquire or release a lock on a resource, leading to unexpected resource state changes and behaviors.

View on MITRE
Back to CWE Lookup

Extended Description

Locking is a type of synchronization behavior that ensures that multiple independently-operating processes or threads do not interfere with each other when accessing the same resource. All processes/threads are expected to follow the same steps for locking. If these steps are not followed precisely - or if no locking is done at all - then another process/thread could modify the shared resource in a way that is not visible or predictable to the original process. This can lead to data or memory corruption, denial of service, etc.

Technical Details

Structure
Simple

Applicable To

Languages
Platforms

Frequently Asked Questions

What is CWE-667: Improper Locking?+

CWE-667: Improper Locking is a Common Weakness Enumeration (CWE) entry maintained by MITRE. The product does not properly acquire or release a lock on a resource, leading to unexpected resource state changes and behaviors. Locking is a type of synchronization behavior that ensures that multiple independently-operating processes or threads do not interfere with each other when accessing the same resource. All processes/threads are expected to follow the same steps for locking. If these steps are not followed precisely - or if no locking is done at all - then another process/thread could modify the shared resource in a way that is not visible or predictable to the original process. This can lead to data or memory corruption, denial of service, etc.

What are the security consequences of Improper Locking?+

If exploited, CWE-667 (Improper Locking) it can compromise Availability, leading to outcomes such as DoS: Resource Consumption (CPU).

How do you prevent or mitigate Improper Locking?+

Recommended mitigations for CWE-667 include: Use industry standard APIs to implement locking mechanism.

What are real-world examples of Improper Locking?+

MITRE documents real CVEs mapped to CWE-667, including CVE-2021-1782, CVE-2009-0935, CVE-2010-4210, CVE-2008-4302 and CVE-2009-1243. You can look up the full details of each CVE, including CVSS scores and remediation guidance, on our CVE Lookup tool.

What is the difference between a CWE and a CVE?+

A CWE (Common Weakness Enumeration) like CWE-667 describes a category of software weakness — the underlying flaw type. A CVE (Common Vulnerabilities and Exposures) identifies a specific, real-world vulnerability in a particular product. In short, a CWE is the kind of mistake, and a CVE is an instance of that mistake being found in software.

Learn More