30985 - [SC - Medium] Griefing attack prevents admins from disabling ...
Description
Description
function whitelist(address _token) public {
require(msg.sender == admin, "not admin");
require(_token != address(0), "cannot be zero address");
_whitelist(_token);
}
function removeFromWhitelist(address _token) external {
require(msg.sender == admin, "not admin");
_removeFromWhitelist(_token);
}Vulnerability Details
Attack vector
Impact Details
Proof of Concept
Previous30973 - [SC - Low] Incorrect Validation of treasuryPct in the Reve...Next30990 - [SC - Critical] Users can use Voterpoke to accrue Flux tokens i...
Last updated
Was this helpful?