42_Override/level00/walkthrough
0x35c 74805a47ac level00: done
level01: done
2025-05-05 17:59:07 +02:00

9 lines
272 B
Plaintext

# Level00
Using ghidra, we can decompile the code and see that it calls `scanf()` on an int buffer.
It will then compare its value to 5276 and opens a shell if the value matches.
All we have to do is input that value.
Here is the command:
`(echo 5276; cat) | ./level00`