Rating:
## What's example flag? (triv, 1p)
### PL
[ENG](#eng-version)
Przykładowa flaga znajduje się tutaj http://asis-ctf.ir/rules/ :
ASIS{476f20676f6f2e676c2f67776a625466}
Ale nie o nią chodzi. Hexy przypominające hash MD5 są tak naprawdę tekstem zakodowanym w ASCII.
bytes.fromhex('476f20676f6f2e676c2f67776a625466').decode('ascii')
rozwiązuje się do:
pod tym linkiem znajduje się prawdziwa flaga:
hi all, the flag is: ASIS{c0966ad97f120b58299cf2a727f9ca59}
### ENG version
There is an example flag in http://asis-ctf.ir/rules/ :
ASIS{476f20676f6f2e676c2f67776a625466}
However, that's not the flag we are looking for. This supposed MD5 hash is actually hex encoded ASCII.
bytes.fromhex('476f20676f6f2e676c2f67776a625466').decode('ascii')
evaluates to:
where we can find the real flag:
hi all, the flag is: ASIS{c0966ad97f120b58299cf2a727f9ca59}