56383 sc low the alchemistcurator acceptadminownership can t be called by the pending admin and if the function is called without pending admin the admin rigths will be lost
Description
Brief/Intro
Vulnerability Details
@> function transferAdminOwnerShip(address _newAdmin) external onlyAdmin {
pendingAdmin = _newAdmin;
}
function acceptAdminOwnership() external onlyAdmin {
admin = pendingAdmin;
@> pendingAdmin = address(0);
emit AdminChanged(admin);
}Impact Details
References
Recommendation
Proof of Concept
Proof of Concept
Previous58782 sc high rewards earned by eulerarbusdcstrategy will not be withdrawable from euler pool on arbitrumNext57066 sc critical a malicious actor can keep calling poke at every block to prevent collateral earmarking exposing transmuter users to delayed redemptions and loss of funds
Was this helpful?