Basic Time Related CWEs
CWE-362 - Concurrent Execution using Shared Resources with Improper Synchronization.
The program contains a code sequence that can run concurrently with other code.
And the code sequence requires temporary, exclusive access to a shared resource.
However, a timing window exists in which the shared resource can be modified by another code sequence that is operating concurrently.
CWE-662 - Improper Synchronization.
The software uses multiple threads or processes to allow temporary access to a shared resource that can only be exclusive to one process at a time.
However, it does not properly synchronize these actions.
Which might cause simultaneous access to this resource by multiple threads or processes.
Last updated