From the course: CISSP Cert Prep (2021): 8 Software Development Security

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Race condition vulnerabilities

Race condition vulnerabilities

From the course: CISSP Cert Prep (2021): 8 Software Development Security

Start my 1-month free trial

Race condition vulnerabilities

- [Instructor] Race conditions are a particularly dangerous security flaw that require careful attention from software developers. A race condition occurs when the proper functioning of a security control depends upon the timing of activities performed by the computer or the user. If the timing doesn't occur as expected the software may behave in an unexpected manner causing a significant security vulnerability. A common example of a race condition is the time of check to time of use or talk to vulnerability. In a talk to vulnerability, software checks to see whether an activity is authorized and then some time elapses before it performs the action that it checked. Let's take a look at an example of a bank account. Imagine an ATM machine that dispenses cash. The algorithm for this machine might work like this. The user inserts an ATM card, enters a pin. The machine verifies the pin and checks the available account balance.…

Contents