Skip to content

Instantly share code, notes, and snippets.

@kkrypt0nn
Created April 3, 2022 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kkrypt0nn/7bda0bc626c9ca5f0d127a8fcabdaa1c to your computer and use it in GitHub Desktop.
Save kkrypt0nn/7bda0bc626c9ca5f0d127a8fcabdaa1c to your computer and use it in GitHub Desktop.
Solution for challenge Guardians of the Galaxy at the Space Heroes 2022 CTF
"""
Useless data:
0x7ffd7417b6f0
0x55f6d353b2a0
0x2570257025702570
0x2570257025702570
0x2570257025702570
0x70257025702570
---------------
Important data:
0x6d697b6674636873
0x636172747369645f
0x756f795f676e6974
0x55f6d2000a7d
"""
from binascii import unhexlify
flag = b"".join(
[
unhexlify("6d697b6674636873")[::-1],
unhexlify("636172747369645f")[::-1],
unhexlify("756f795f676e6974")[::-1],
unhexlify("55f6d2000a7d")[::-1],
]
)
print(flag)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment