49623 sc low unstaking allows going below minimum stake
Description
Brief/Intro
Vulnerability Details
function unstake(uint16 validatorId, uint256 amount) external returns (uint256 amountUnstaked) {
if (amount == 0) {
revert InvalidAmount(0);
}
return _unstake(validatorId, amount);
}Impact Details
References
Proof of Concept
Previous50916 sc high token creators can bypass factory upgrade controls via wrong code implementation of default admin role in arctokenfactory sol Next50560 sc high inconsistent commission rounding traps user validator funds
Was this helpful?