目标达成 感谢每一位支持者 — 我们达成了 100% 目标!

目标: 1000 元 · 已筹: 1336

100%

CWE-367 检查时间与使用时间(TOCTOU)的竞争条件 类漏洞列表 476

CWE-367 检查时间与使用时间(TOCTOU)的竞争条件 类弱点 476 条 CVE 漏洞汇总,含 AI 中文分析。

CWE-367 属于竞态条件漏洞,指系统在检查资源状态后、实际使用前,资源状态发生不可控变化,导致检查失效。攻击者利用这一时间窗口,通过并发操作篡改资源,从而绕过安全验证或执行未授权操作。开发者应避免在检查与使用间插入耗时操作,采用原子性操作或加锁机制确保状态一致性,以消除竞争条件带来的安全风险。

MITRE CWE 官方描述
CWE:CWE-367 检查时-使用时(TOCTOU)竞态条件 英文:产品在利用资源之前会检查该资源的状态,但在检查与利用之间,资源的状态可能发生变化,从而导致检查结果失效。
常见影响 (6)
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.
缓解措施 (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.
代码示例 (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 ID 标题 CVSS 风险等级 Published
CVE-2026-87996 Open WebUI 通过 Playwright 加载器的 DNS 重绑定致 SSRF 漏洞 — open-webui 7.7 High 2026-09-09
CVE-2026-79968 Dell SCG 5.0 低版本 TOCTOU 竞态条件致拒绝服务 — Secure Connect Gateway 5.0 - Application 5.6 Medium 2026-09-09
CVE-2026-79730 Dell SCG 5.0 TOCTOU竞态条件致拒绝服务 — Secure Connect Gateway 5.0 - Application 5.6 Medium 2026-09-09
CVE-2026-87523 Chrome <153.0.8010.36 DataTransfer竞态条件 — Chrome - - 2026-09-09
CVE-2026-87457 Chrome 153.0.8010.36更新器竞态条件提权 — Chrome - - 2026-09-09
CVE-2026-87433 Chrome 153.0.8010.36 FileAPI竞态条件致隔离绕过 — Chrome - - 2026-09-09
CVE-2026-87554 Chrome 153.0.8010.36 竞态条件远程代码执行 — Chrome - - 2026-09-09
CVE-2026-87517 Chrome for iOS 153.0.8010.36 之前竞态条件漏洞 — Chrome - - 2026-09-09
CVE-2026-78464 Windows MIDI服务模块权限提升漏洞 — Windows 11 Version 24H2 7.0 High 2026-09-08
CVE-2026-69779 Windows Win32k 权限提升漏洞 — Windows 10 Version 1607 7.0 High 2026-09-08
CVE-2026-69466 Windows 内核权限提升漏洞 — Windows 10 Version 1607 7.0 High 2026-09-08
CVE-2026-69440 Windows MIDI 服务模块提权漏洞 — Windows 11 Version 24H2 7.0 High 2026-09-08
CVE-2026-69804 Microsoft Office SharePoint 远程代码执行漏洞 — Microsoft SharePoint Server Subscription Edition 7.5 High 2026-09-08
CVE-2026-69859 Windows usbaudio.sys 驱动提权漏洞 — Windows 10 Version 1607 7.0 High 2026-09-08
CVE-2026-76925 Flatpak 竞争条件问题漏洞 — Red Hat Enterprise Linux 10 5.8 Medium 2026-09-04
CVE-2026-18567 IBM Db2 Mirror for i 竞争条件问题漏洞 — Db2 Mirror for i 4.4 Medium 2026-09-04
CVE-2026-45197 Imagination Technologies Graphics DDK 竞争条件问题漏洞 — Graphics DDK - - 2026-09-04
CVE-2026-85045 Google Chrome 竞争条件问题漏洞 — Chrome - - 2026-09-03
CVE-2026-78410 util-linux 竞争条件问题漏洞 — Red Hat Hardened Images 7.8 High 2026-09-02
CVE-2026-19118 GitHub Enterprise Server 竞争条件问题漏洞 — Enterprise Server 7.7 High 2026-09-01
CVE-2026-78319 Sauter modu680-AS 竞争条件问题漏洞 — modu680-AS 9.3 Critical 2026-09-01
CVE-2026-19410 Google Cloud Build 输入验证错误漏洞 — Google Cloud Build 9.4 Critical 2026-08-31
CVE-2026-82238 File Browser 竞争条件问题漏洞 — filebrowser 3.1 Low 2026-08-28
CVE-2026-77573 WeblateOrg weblate 竞争条件问题漏洞 — weblate 3.5 Low 2026-08-26
CVE-2026-58094 FreeBSD 竞争条件问题漏洞 — FreeBSD - - 2026-08-26
CVE-2026-65183 Apache Tomcat 竞争条件问题漏洞 — Apache Tomcat - - 2026-08-25
CVE-2026-79017 Google Chrome 竞争条件问题漏洞 — Chrome - - 2026-08-25
CVE-2026-79089 Google Chrome 竞争条件问题漏洞 — Chrome - - 2026-08-25
CVE-2026-79196 Google Chrome 竞争条件问题漏洞 — Chrome - - 2026-08-25
CVE-2026-79263 Google Chrome 竞争条件问题漏洞 — Chrome - - 2026-08-25

CWE-367(检查时间与使用时间(TOCTOU)的竞争条件) 是常见的弱点类别,本平台收录该类弱点关联的 476 条 CVE 漏洞。