Question: Based on SEED lab Race Condition Vulnerability Attack, explain how below php code could be used to execute this type of attack. function withdraw ($amount)
- Based on SEED lab Race Condition Vulnerability Attack, explain how below php code could be used to execute this type of attack.
function withdraw ($amount)
{
$balance = getBalance ( ) ;
If ($amount <= balance) {
$balance = $balance - $amount;
echo You have withdrawn: $amount ;
saveBalance ($balance);
}
else {
echo Insufficient funds. ;
}
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
