anasx on 2026-07-03 04:48:
[Click to reveal]I really enjoyed reversing it. Thanks for sharing
kotsuge on 2026-07-03 11:28:
[Click to reveal]C:\Users\utkui\Desktop\X64-Release>C:\Users\utkui\Desktop\code.exe
Enter Your Number : 33
Enter The Secret Key : 102
Congratulations, you have completed the challenge!
Good.
TheSwedishLord on 2026-07-04 13:19:
[Click to reveal]Only things I can find is 33 and 102 to get the "good" message ;)
Suicidee on 2026-07-04 15:47:
Pls check and approve my writeup, thank you for the challenge
SCYMMER on 2026-07-04 16:33:
[Click to reveal]33
102
kirbyyy on 2026-07-05 06:13:
[Click to reveal]Initial check expects 33. Secret key is 102. :3 was fun
Slater on 2026-07-06 07:34:
[Click to reveal]the RE tool I used was Ghidra which made this a nice initial RE to solve. initial input and secret key input checks are simple to find in the assembly instructions, making the decompilation into psuedo-c not needed for this solve, but good practice for harder crackme problems.
sh4man on 2026-07-07 11:13:
[Click to reveal]Number : 33
Secret Key : 102
Very interesting!
femom on 2026-07-08 15:53:
[Click to reveal]very easy challenge, thank you!
dandelion_msla on 2026-07-09 02:06:
Thanks! I'm very much a beginner, and these are great practice.
kcgaming on 2026-07-10 00:14:
[Click to reveal]finally solved my first crackme by myself!! tysm <3
0xTh3B00Gym4n on 2026-07-21 14:58:
[Click to reveal]Use ghidra and you can see hex value where i compares digit and there you can find solution 33 and 102
duongtrieu612 on 2026-07-23 08:42:
[Click to reveal]number:33
code:102
GG!
Solution by RodrigoTeixeira on 2026-07-03 18:03: Detailed walk-through of how I cracked this as my first ever crackme. Very fun and easy crackme with hardcoded passwords on the code.
Solution by Suicidee on 2026-07-04 15:46: Solved using static analysis with Ghidra by locating the main function, examining the decompiled code, and identifying the hardcoded hexadecimal comparisons (0x21 and 0x66) that correspond to the required inputs.
Solution by poltshell on 2026-07-07 05:42: A great starter crackme for anyone wanting to get their feet wet with tools, decompiling code, and what to look for.