CWE•Base•Incomplete•20 recent CVEs
CWE-367Time-of-check Time-of-use (TOCTOU) Race Condition
Description
The product checks the state of a resource before using that resource, but the resource's state can change between the check and the use in a way that invalidates the results of the check.
Common consequences
- Integrity,Other→Alter Execution Logic,Unexpected StateThe attacker can gain access to otherwise unauthorized resources.
- Integrity,Other→Modify Application Data,Modify Files or Directories,Modify Memory,OtherRace conditions such as this kind may be employed to gain read or write access to resources which are not normally readable or writable by the user in question.
- Integrity,Other→OtherThe resource in question, or other resources (through the corrupted one), may be changed in undesirable ways by a malicious user.
- Non-Repudiation→Hide ActivitiesIf a file or other resource is written in this method, as opposed to in a valid way, logging of the activity may not occur.
- Non-Repudiation,Other→OtherIn some cases it may be possible to delete files a malicious user might not otherwise have access to, such as log files.
- Other→Unexpected StateThe product may perform invalid actions when the resource is in an unexpected state.
Potential mitigations
- ImplementationThe most basic advice for TOCTOU vulnerabilities is to not perform a check before the use. This does not resolve the underlying issue of the execution of a function on a resource whose state and identity cannot be assured, but it does help to limit the false sense of security given by the check.
- ImplementationWhen the file being altered is owned by the current user and group, set the effective gid and uid to that of the current user and group when executing this statement.
- Architecture and DesignLimit the interleaving of operations on files from multiple processes.
- Implementation,Architecture and DesignIf you cannot perform operations atomically and you must share access to the resource between multiple processes or threads, then try to limit the amount of time (CPU cycles) between the check and use of the resource. This will not fix the problem, but it could make it more difficult for an attack to succeed.
- ImplementationRecheck the resource after the use call to verify that the action was taken appropriately.
- Architecture and DesignEnsure that some environmental locking mechanism can be used to protect resources effectively.
- ImplementationEnsure that locking occurs before the check, as opposed to afterwards, such that the resource, as checked, is the same as it is when in use.
Related CWEs
Recent CVEs classified under this CWE
CVE-2025-412592026-06-03CVE-2026-352022026-06-02CVE-2025-643907.42026-06-02CVE-2026-252607.82026-06-01CVE-2025-596106.42026-06-01CVE-2026-204546.42026-06-01CVE-2026-456196.52026-05-29CVE-2026-97966.52026-05-28CVE-2026-423362026-05-26CVE-2026-241917.82026-05-26CVE-2026-452087.82026-05-21CVE-2025-712167.82026-05-21CVE-2025-712157.02026-05-21CVE-2026-78373.72026-05-21CVE-2026-295187.02026-05-20CVE-2026-436196.32026-05-20CVE-2026-417027.82026-05-15CVE-2025-525322026-05-15CVE-2022-238262026-05-15CVE-2026-425925.32026-05-14