CWE一覧に戻る
CWE-367

チェック時間 使用時間 (TOCTOU) レース条件

Time-of-check Time-of-use (TOCTOU) Race Condition
脆弱性 作成中
JA

製品はリソースを使用する前にリソースの状態をチェックするが、チェックの結果を無効にするような方法で、チェックと使用の間にリソースの状態が変化する可能性がある。

EN

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.

Scope: Integrity, Other / Impact: Alter Execution Logic; Unexpected State
Scope: Integrity, Other / Impact: Modify Application Data; Modify Files or Directories; Modify Memory; Other
Scope: Integrity, Other / Impact: Other
Scope: Non-Repudiation / Impact: Hide Activities
Scope: Non-Repudiation, Other / Impact: Other
Scope: Other / Impact: Unexpected State
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.
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.
Limit the interleaving of operations on files from multiple processes.
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.
Recheck the resource after the use call to verify that the action was taken appropriately.
Ensure that some environmental locking mechanism can be used to protect resources effectively.
Ensure 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.
MITRE公式ページ — CWE-367