BaseIncomplete

CWE-367Time-of-check Time-of-use (TOCTOU) Race Condition

Category: logic

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· 5

  • Integrity / Other — Alter Execution Logic, Unexpected State
    The attacker can gain access to otherwise unauthorized resources.
  • Integrity / Other — Modify Application Data, Modify Files or Directories, Modify Memory, Other
    Race 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 — Other
    The resource in question, or other resources (through the corrupted one), may be changed in undesirable ways by a malicious user.
  • Non-Repudiation — Hide Activities
    If 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 — Other
    In some cases it may be possible to delete files a malicious user might not otherwise have access to, such as log files.

Potential mitigations· 5

  • [Implementation]The 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.
  • [Implementation]When 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 Design]Limit the interleaving of operations on files from multiple processes.
  • [Implementation, Architecture and Design]If 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.
  • [Implementation]Recheck the resource after the use call to verify that the action was taken appropriately.

Related CAPEC attack patterns· 2

CAPEC-27CAPEC-29

References

  1. https://cwe.mitre.org/data/definitions/367.html

Exploits (incoming)2

TypeTargetConfidenceTier
AttackPatternLeveraging Time-of-Check and Time-of-Use (TOCTOU) Race Conditionscapec-29100%live
AttackPatternLeveraging Race Conditions via Symbolic Linkscapec-27100%live

(incoming)21

TypeTargetConfidenceTier
VulnerabilityVMware ESXi and Workstation TOCTOU Race Condition Vulnerabilitycve-2025-222240%live
VulnerabilityCVE-2025-23359cve-2025-233590%live
VulnerabilityCVE-2025-27812cve-2025-278120%live
VulnerabilityLinux Kernel Time-of-Check Time-of-Use (TOCTOU) Race Condition Vulnerabilitycve-2025-383520%live
VulnerabilityCVE-2025-64180cve-2025-641800%live
VulnerabilityCVE-2026-20677cve-2026-206770%live
VulnerabilityCVE-2026-21523cve-2026-215230%live
VulnerabilityCVE-2026-25052cve-2026-250520%live
VulnerabilityCVE-2026-25641cve-2026-256410%live
VulnerabilityCVE-2026-37531cve-2026-375310%live
VulnerabilityCVE-2026-41002cve-2026-410020%live
VulnerabilityCVE-2026-41296cve-2026-412960%live
VulnerabilityCVE-2026-41651cve-2026-416510%live
VulnerabilityCVE-2026-44112cve-2026-441120%live
VulnerabilityCVE-2026-44694cve-2026-446940%live
VulnerabilityCVE-2026-6180cve-2026-61800%live
KEVEntryApple Multiple Products Memory Corruption Vulnerabilitykev-cve-2022-486180%live
KEVEntryMicrosoft Outlook Security Feature Bypass Vulnerabilitykev-cve-2023-353110%live
KEVEntryMicrosoft Windows Kernel TOCTOU Race Condition Vulnerabilitykev-cve-2024-300880%live
KEVEntryVMware ESXi and Workstation TOCTOU Race Condition Vulnerabilitykev-cve-2025-222240%live
KEVEntryLinux Kernel Time-of-Check Time-of-Use (TOCTOU) Race Condition Vulnerabilitykev-cve-2025-383520%live

Related by meaning· 6

Nearest entities by semantic similarity across the cs-graph corpus.

CWE
Concurrent Execution using Shared Resource with Improper Synchronization ('Race Condition')
CAPEC
Leveraging Time-of-Check and Time-of-Use (TOCTOU) Race Conditions
CWE
Signal Handler Race Condition
CWE
Double-Checked Locking
CWE
Hardware Logic Contains Race Conditions
CWE
Race Condition within a Thread
Sourced from MITRE CWE 4.20. Curated for EU compliance use cases by Adam Lundqvist, Founder at SQUR.