BreizhCTF 2025 - Welcome Game [blockchain]
Welcome Game writeup, BreizhCTF 2025.
Difficulty : Very Easy
Team : So what if I’m a Phreaks 2600
Description : Bienvenue au BreizhCTF 2025 ! Pour commencer, nous allons jouer à un jeu, trouvez un moyen de réussir à gagner la partie pour obtenir le flag.
Author : K.L.M
TL;DR
- Notice that it’s a sudoku grid
- Use an online solver
- Submit the sudoku solution and get the flag
Introduction
We were given a solidity file with a 2-dimensions array of 9 lines and 9 columns.
It was possible to submit an array with the same dimensions to submitSolution()
and several checks were done to verify if we got the right solution, if yes, the challenge is solved.
Here is the challenge source code :
Challenge.sol
|
|
Code analysis
Through the constructor, an array is initialized :
|
|
I didn’t got it at first but the next step will make it clear.
The next function allow us to submit an array and verify it through isValidSolution()
:
|
|
And this next function run a series of checks :
isValidSolution()
|
|
Which check in his order :
- Check if the numbers from the initial grid (except zeros) are in the submitted grid by the user.
- Check if there are no duplicate numbers in a row
- Check if there are no duplicate numbers in a column
- Check if there are no duplicate in the 9 3x3 squares of the submitted grid.
So we can understand that the challenge is actually a sudoku.
Solving
Now we know that we have to solve the sudoku using the initial grid, we can use an online solver like https://www.dcode.fr/solveur-sudoku.
Then we get the following grid :
|
|
I wrote a contract that send the grid because I didn’t know how to submit an array with cast :
Solve.sol
|
|
And then we can deploy the contract :
|
|
And trigger the “submitSolution()” function from our deployed contract.
|
|
BZHCTF{W3lcome_t0_th3_BZHCTF25!}
Another way to solve the challenge was published by neoreo without deploying a contract by submitting directly the array formated as it would be written in a solidity file but without lines break :
|
|