ilovecracking on 2025-12-18 17:37:
[Click to reveal]password: super_secret_password
momospc on 2025-12-18 17:52:
are you sure about that? ;)
momospc on 2025-12-18 18:15:
if (strcmp(input, "super_secret_password") == 0)
{
puts("📧 Emailing the cops...");
​ }
raka88 on 2025-12-19 21:17:
[Click to reveal]password = 1337
benlukka on 2025-12-22 23:30:
(SPOILER)
Hey,
that was fun as it was my first Crackme. Also knew what you did with the cast of the characters in the for loop and then passing it to the next function etc.. but i couldnt figure out what letters / symbols to use. what would have been the to figure something like this out?
r00tz on 2025-12-23 03:29:
Really easy, the answer can be a bunch of things, just pick one! :D
Deemon on 2026-01-04 06:44:
[Click to reveal]You can make a python script that goes through all possible passwords for this binary.
while read -r line; do if echo "$line" | ./frame >/dev/null; then echo "[+] $line"; fi; done <<< "$(python3 decode.py)"