| ASCII_CRACK |
CTF{S3cR3T_AsSc1_Fl4g}{@_@}
found using this python script:
def decode(a:str, b:int):
return chr(ord(a)-b)
s = "IYJ~U4cQ1Q[<mL[(U;`'Ynk/M-i"
new_s = ""
for i in range(len(s)):
new_s += decode(s[i], 6-i)
print(new_s) |
2026-04-05 09:18 |
| U Can't Pass |
replace assembly instruction:
0010117c 74 10 JZ LAB_0010118e
with a NOP
[user@hostname ~]$ ./main.out
Hello in my first programm for crackme.one
Success! |
2026-04-05 08:23 |