30825 - [SC - Critical] Users can get unlimited amounts of Flux tokens
Description
Brief/Intro
Vulnerability Details
// ...
contract VotingEscrow is IERC721, IERC721Metadata, IVotes, IVotingEscrow {
// ...
function merge(uint256 _from, uint256 _to) external {
require(!voted[_from], "voting in progress for token");
// ...
IFluxToken(FLUX).mergeFlux(_from, _to);
// ...
}
// ...
}Impact Details
References
Proof of Concept
Results
Previous30818 - [SC - Low] division before multiplication in theamountToRa...Next30826 - [SC - High] ALCK rewards are lost when merging tokens becau...
Last updated
Was this helpful?