Level 1 - Fallback โบ
Last updated
Last updated
The exploit in this contract is in the receive()
function as it changes the owner to any msg.sender
provided that the msg.sender
has previously been added to the contributions
mapping.
Start by contributing to the contract as this is needed to pass the require
check in the receive()
function. The contribution must be less than 0.001 ETH
to pass the require
on the contribute()
function (line 23
).
Become the owner by sending an amount of ETH directly to the contract which will get picked up by the receive()
function (line 38
).
Now you are the owner, withdraw all the funds.
Submit instance... ๐ฅณ
This exploit shows how logic in the receive()
function should be carefully reviewed as even though it can't be easily called through a standard contract function call, it's still possible to call it.
The logic doesn't make much sense as I don't see what was trying to be achieved. Maybe to have a "secret" way to change the owner?