ChainlinkOracle#_badChainlinkResponse
is not checked stale ChainLink price.
as we can see, ths function not checked the returned ChainLink price is stale or not.
Protocol may use a stale ChainLink price.
vscode, Manual Review
Change if (response.timestamp == 0 || response.timestamp > block.timestamp) { return true; }
to if (response.timestamp == 0 || response.timestamp > block.timestamp || max_delay_time < block.timestamp - response.timestamp) { return true; }
The contest is live. Earn rewards by submitting a finding.
This is your time to appeal against judgements on your submissions.
Appeals are being carefully reviewed by our judges.