Unfinished

以下の文字列が与えられた。

This string was given:

#!/usr/bin/env python3 from binascii import unhexlify as u def get_flag(): flag = '666c61677b30682d6c6f6f6b2d612d466c61477d' return u(flag).decode('utf-8') print(f'The flag is: ')

このなかの16進文字列の部分にCyberChefの From Hex をかけることで、flagが得られた。

I obtained the flag by applying "From Hex" on CyberChef to the hexadecimal string in this.

From Hex - CyberChef

flag{0h-look-a-FlaG}

DEADFACE CTF