Goal Reached Thanks to every supporter — we hit 100%!

Goal: 1000 CNY · Raised: 1000 CNY

100.0%

CWE-367 (检查时间与使用时间(TOCTOU)的竞争条件) — Vulnerability Class 325

325 vulnerabilities classified as CWE-367 (检查时间与使用时间(TOCTOU)的竞争条件). AI Chinese analysis included.

CWE-367 represents a logic flaw where a system verifies a resource’s state before accessing it, allowing the state to change maliciously between the verification and actual usage. Attackers typically exploit this race condition by manipulating the resource, such as swapping a file or altering permissions, during the narrow window between the check and the use. This enables unauthorized access or privilege escalation, as the application proceeds based on outdated, validated assumptions. To mitigate this vulnerability, developers must ensure atomic operations, ensuring that the check and use occur simultaneously without interruption. Implementing robust locking mechanisms, utilizing secure system calls that combine verification and access, or adopting file descriptor-based approaches can effectively prevent state changes, thereby eliminating the race condition and securing the resource against temporal manipulation.

MITRE CWE 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 (6)
Integrity, OtherAlter Execution Logic, Unexpected State
The attacker can gain access to otherwise unauthorized resources.
Integrity, OtherModify 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, OtherOther
The resource in question, or other resources (through the corrupted one), may be changed in undesirable ways by a malicious user.
Non-RepudiationHide 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, OtherOther
In some cases it may be possible to delete files a malicious user might not otherwise have access to, such as log files.
Mitigations (5)
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.
Examples (2)
The following code checks a file, then updates its contents.
struct stat *sb; ... lstat("...",sb); // it has not been updated since the last time it was read printf("stated file\n"); if (sb->st_mtimespec==...){ print("Now updating things\n"); updateThings(); }
Bad · C
The following code is from a program installed setuid root. The program performs certain file operations on behalf of non-privileged users, and uses access checks to ensure that it does not use its root privileges to perform operations that should otherwise be unavailable the current user. The program uses the access() system call to check if the person running the program has permission to access…
if(!access(file,W_OK)) { f = fopen(file,"w+"); operate(f); ... } else { fprintf(stderr,"Unable to open file %s.\n",file); }
Bad · C
CVE IDTitleCVSSSeverityPublished
CVE-2024-9183 Time-of-check Time-of-use (TOCTOU) Race Condition in GitLab — GitLab 7.7 High2025-12-05
CVE-2025-58407 GPU DDK - TOCTOU bug affecting psFWMemContext->uiPageCatBaseRegSet — Graphics DDK 7.8AIHighAI2025-11-17
CVE-2025-13032 Gen Digital Antivirus 安全漏洞 — (Free/Premiium/Ultimeat) Antivirus 9.9 Critical2025-11-11
CVE-2025-64457 编号撤回 — ReSharper, Rider and dotTrace 4.2 Medium2025-11-10
CVE-2025-64180 Manager-io/Manager: Complete Bypass of SSRF Protection via Time-of-Check Time-of-Use (TOCTOU) — Manager 10.0 Critical2025-11-07
CVE-2025-20740 mediatek Chipsets 安全漏洞 — MT7902, MT7920, MT7921, MT7922, MT7925, MT7927 4.7AIMediumAI2025-11-04
CVE-2011-10035 Nagios XI < 2011R1.9 Race Conditions in Crontab Install Scripts LPE — XI 7.0AIHighAI2025-10-30
CVE-2025-62511 yt-grabber-tui local arbitrary file overwrite via TOCTOU race in config file creation — YtGrabber-TUI 6.3 Medium2025-10-17
CVE-2025-54271 Creative Cloud Desktop | Time-of-check Time-of-use (TOCTOU) Race Condition (CWE-367) — Creative Cloud Desktop 5.6 Medium2025-10-15
CVE-2025-59497 Microsoft Defender for Linux Denial of Service Vulnerability — Microsoft Defender for Endpoint for Linux 7.0 High2025-10-14
CVE-2025-59261 Windows Graphics Component Elevation of Privilege Vulnerability — Windows 11 version 22H2 7.0 High2025-10-14
CVE-2025-55696 NtQueryInformation Token function (ntifs.h) Elevation of Privilege Vulnerability — Windows 10 Version 1809 7.8 High2025-10-14
CVE-2025-55680 Windows Cloud Files Mini Filter Driver Elevation of Privilege Vulnerability — Windows 10 Version 1809 7.8 High2025-10-14
CVE-2025-42701 CrowdStrike Falcon Sensor for Windows Race Condition — Falcon sensor for Windows 5.6 Medium2025-10-08
CVE-2025-58131 Zoom Workplace VDI Plugin macOS Universal installer for VMware Horizon - Race Condition — Zoom Workplace VDI Plugin macOS Universal installer for VMware Horizon 6.6 Medium2025-09-09
CVE-2025-54093 Windows TCP/IP Driver Elevation of Privilege Vulnerability — Windows 10 Version 1507 7.0 High2025-09-09
CVE-2025-55236 Graphics Kernel Remote Code Execution Vulnerability — Windows 10 Version 1809 7.3 High2025-09-09
CVE-2025-9810 TOCTOU race in Linenoise enables arbitrary file overwrite and permission changes — linenoise 6.8 Medium2025-09-01
CVE-2025-44002 Arbitrary File Creation via Symbolic Link leading to Denial-of-Service — Full Client 6.1 Medium2025-08-26
CVE-2025-54667 WordPress myCred plugin <= 2.9.4.3 - Race Condition Vulnerability — myCred 5.3 Medium2025-08-14
CVE-2025-49558 Adobe Commerce | Time-of-check Time-of-use (TOCTOU) Race Condition (CWE-367) — Adobe Commerce 5.9 Medium2025-08-12
CVE-2025-53788 Windows Subsystem for Linux (WSL2) Kernel Elevation of Privilege Vulnerability — Windows Subsystem for Linux (WSL2) 7.0 High2025-08-12
CVE-2025-53134 Windows Ancillary Function Driver for WinSock Elevation of Privilege Vulnerability — Windows 10 Version 1507 7.0 High2025-08-12
CVE-2025-50158 Windows NTFS Information Disclosure Vulnerability — Windows 10 Version 1507 7.0 High2025-08-12
CVE-2025-27076 Time-of-check Time-of-use (TOCTOU) Race Condition in Display — Snapdragon 7.8 High2025-08-06
CVE-2025-21473 Time-of-check Time-of-use (TOCTOU) Race Condition in Camera_Linux — Snapdragon 7.8 High2025-08-06
CVE-2025-21455 Time-of-check Time-of-use (TOCTOU) Race Condition in Camera_Linux — Snapdragon 7.8 High2025-08-06
CVE-2025-54655 Huawei HarmonyOS 安全漏洞 — HarmonyOS 8.1 High2025-08-06
CVE-2025-23279 NVIDIA GPU Display Driver 安全漏洞 — GPU Display Drivers 7.0 High2025-08-02
CVE-2025-8192 Race condition in AndroidTV TvSettings — TV 4.7AIMediumAI2025-07-31

Vulnerabilities classified as CWE-367 (检查时间与使用时间(TOCTOU)的竞争条件) represent 325 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.