CREATE2
address collision during pool deployment allows for complete draining of the pool
#482
Labels
2 (Med Risk)
Assets not at direct risk, but function/availability of the protocol could be impacted or leak value
bug
Something isn't working
edited-by-warden
M-03
primary issue
Highest quality submission among a set of duplicates
🤖_99_group
AI based duplicate group recommendation
satisfactory
satisfies C4 submission criteria; eligible for awards
selected for report
This submission will be included/highlighted in the audit report
sponsor acknowledged
Technically the issue is correct, but we're not going to resolve it for XYZ reasons
Lines of code
https://github.com/code-423n4/2024-04-panoptic/blob/main/contracts/PanopticFactory.sol#L237
https://github.com/OpenZeppelin/openzeppelin-contracts/blob/0a25c1940ca220686588c4af3ec526f725fe2582/contracts/proxy/Clones.sol#L53
Vulnerability details
(NOTE: This report is very highly inspired from this past valid report. Necessary changes have been made to suit the Panoptic Protocol.)
Vulnerability Detailed
The attack consists of two parts: Finding a collision, and actually draining the lending pool. We describe both here:
PoC: Finding a collision
Note that in
PanopticFactory::deployNewPool
,CREATE2
salt is user-supplied which is then passed toClones::cloneDeterministic
:The address collision an attacker will need to find are:
Both sets of addresses can be brute-force searched because:
salt
is a user-supplied parameter. By brute-forcing manysalt
values, we have obtained many different (undeployed) wallet accounts for (1). The user can know the address of the Panoptic Pool before deploying it, since as shown in the above code snippet, the result is deterministic.CREATE2
, and thesalt
is in the attacker's control by definition.An attacker can find any single address collision between (1) and (2) with high probability of success using the following meet-in-the-middle technique, a classic brute-force-based attack in cryptography:
The feasibility, as well as detailed technique and hardware requirements of finding a collision, are sufficiently described in multiple references:
The hashrate of the BTC network has reached$6.5 x 10^{20}$ hashes per second as of time of writing, taking only just 31 minutes to achieve $2^{80}$ hashes. A fraction of this computing power will still easily find a collision in a reasonably short timeline.
PoC: Draining the lending pool
Even given EIP-3607 which disables an EOA if a contract is already deployed on top, we show that it's still possible to drain the Panoptic Pool entirely given a contract collision.
Assuming the attacker has already found an address collision against an undeployed Panoptic Pool, let's say
0xCOLLIDED
. The steps for complete draining of the Panoptic Pool are as follow:First tx:
0xCOLLIDED
.0xCOLLIDED
---> attacker wallet} for any token they want.selfdestruct
.Post Dencun hardfork,
selfdestruct
is still possible if the contract was created in the same transaction. The only catch is that all 3 of these steps must be done in one tx.The attacker now has complete control of any funds sent to
0xCOLLIDED
.Second tx:
0xCOLLIDED
.The attacker has stolen all funds from the Panoptic Pool.
Impact
Address collision can cause all tokens of a Panoptic Pool to be drain.
Proof of Concept
While we cannot provide an actual hash collision due to infrastructural constraints, we are able to provide a coded PoC to prove the following two properties of the EVM that would enable this attack:
Here is the PoC, as well as detailed steps to recreate it:
Test
.Test.test()
with a salt of your choice, and record the returned address. The result will be:Test.getAllowance()
for that address will return exactly APPROVE_AMOUNT.Test.getCodeSize()
for that address will return exactly zero.Test.test()
returns the same address as with the first run.Test.getAllowance()
for that address will return twice of APPROVE_AMOUNT.Test.getCodeSize()
for that address will still return zero.The provided PoC has been tested on Remix IDE, on the Remix VM - Mainnet fork environment, as well as testing locally on the Holesky testnet fork, which as of time of writing, has been upgraded with the Dencun hardfork.
Tools Used
Manual Review, Remix IDE
Recommended Mitigation Steps
salt
used.block.timestamp
andblock.number
combined with the user'ssalt
. Then the attacker, after they successfully found a hash collision, already has to execute the attack at a fixed block and probably conspire with the sequencer to ensure that also the time is fixed.Assessed type
Other
The text was updated successfully, but these errors were encountered: