31451 - [SC - Insight] MAX_PROPOSAL_NUMERATOR is incorrectly set
Description
Vulnerability Details
Impact Details
function setProposalNumerator(uint256 numerator) external {
require(msg.sender == admin, "not admin");
require(numerator <= MAX_PROPOSAL_NUMERATOR, "numerator too high");
proposalNumerator = numerator;
emit ProposalNumberSet(numerator);
}
References
Recommendation
Proof of Concept
Previous31449 - [SC - Low] BribegetRewardForOwner should not revert if the...Next31453 - [SC - Critical] The balance of RevenueHandler can be drained
Last updated
Was this helpful?