CAPEC-CAPEC-29 - CERT CVE
Naziv

Leveraging Time-of-Check and Time-of-Use (TOCTOU) Race Conditions

Sažetak This attack targets a race condition occurring between the time of check (state) for a resource and the time of use of a resource. A typical example is file access. The adversary can leverage a file access race condition by "running the race", meaning that they would modify the resource between the first time the target program accesses the file and the time the target program uses the file. During that period of time, the adversary could replace or modify the file, causing the application to behave unexpectedly.
Preduvjeti A resource is access/modified concurrently by multiple processes.|The adversary is able to modify resource.|A race condition exists while accessing a resource.
Rješenja ['Use safe libraries to access resources such as files.', 'Be aware that improper use of access function calls such as chown(), tempfile(), chmod(), etc. can cause a race condition.', 'Use synchronization to control the flow of execution.', 'Use static analysis tools to find race conditions.', 'Pay attention to concurrency problems related to the access of resources.']