BM01 - 250pts
Briefing
Download the file and find a way to get the flag. Contents: program
Challenge Files:
Solution
Running the program shows strange text. We can paste this into Google Translate to find that it is Russian.
Какой пароль?
translates toWhat password?
. Entering some input producesневерный
, which translates toincorrect
.Let's decompile the binary using Ghidra.
main
function:The program compares the user input to
молоток123
, which translates tohammer123
.Running the program and entering
молоток123
outputsверный! флаг: wh1te%BluE$R3d
(Translation:Right! Flag:
wh1te%BluE$R3d), which is the flag.
Flag
wh1te%BluE$R3d
Last updated