Description : Lors de votre périple, vous rencontrez un ange numérique qui vous propose des bénédictions à condition que vous trouvez à quel chiffre l’ange pense.
Après 10 bénédictions, vous pourrez vous élever et atteindre les sommets du paradis. Malheureusement, si vous échouez une fois, votre compteur se remet à 0.
You need 10 blessings to get the flag and there are 50% chance of getting a blessing. If you’re unlucky and don’t get a blessing, you lose all your blessings.
Requesting a blessing cost you ether, but if you actually get a blessing, you get it back. Otherwise you lose it.
Notice that when getting blessed or not, a call to the fallback function is made with 1 ether if you get blessed and 0 ether if not.
Set a condition to cancel the transaction when getting 0 ether after request a blessing, so you can only get blessed.
Get 10 blessings and get the flag.
Introduction
For this challenge, we have to interact with a contract and get blessed 10 times by contacting Blessing(). But, there’s a 50/50 chance to not get blessed and lose all the blessings we have gathered.
After collecting them all, we can call “ascend()” to solve the challenge.
But skill issue, I didn’t managed to recompute the random value successfully.
However, when getting blessed, a function call is made to msg.sender :
1
(bool sent,)=msg.sender.call{value:1ether}("");
And even if we are not getting blessed :
1
(bool sent,)=msg.sender.call{value:0ether}("");
What is happenings is that a call to "" is made. It could be a call to “function1()” or whatever but when it’s empty, it means that the default function when receiving ether is called which is either “receive()” or “fallback()” :
send Ether
|
msg.data is empty?
/ \
yes no
| |
receive() exists? fallback()
/ \
yes no
| |
receive() fallback()
Then, to only receive blessing we can make the difference between a blessing and not a blessing (a curse ?), which is receiving or not ether. So, we can write a receive function to only accept blessings :
1
2
3
4
receive()externalpayable{require(msg.value>=1,"envoie de la moula frr"); player.transfer(address(this).balance);}
Solving
Now that’s the receive function is ready, we can write a contract to which will get the blessings through a GetBlessed() function and make call to it with cast