56332 sc low pending admin cannot accept ownership
Description
Brief/Intro
Vulnerability Details
// ===== Admin Management =====
function transferAdminOwnerShip(address _newAdmin) external onlyAdmin {
pendingAdmin = _newAdmin;
}
function acceptAdminOwnership() external onlyAdmin {
admin = pendingAdmin;
pendingAdmin = address(0);
emit AdminChanged(admin);
}Impact Details
References
Proof of Concept
Proof of Concept
Previous57668 sc high missing collateral tracking update during liquidation leads to inflated total value calculation and delayed under collateralization protectionNext58276 sc critical uncapped feeinyield in resolverepaymentfee allows for collateral theft from other depositors
Was this helpful?