Skip to content

Instantly share code, notes, and snippets.

@kkrypt0nn
Created April 3, 2022 18:40
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/9ff087bc8fb5036231062a634d0211c2 to your computer and use it in GitHub Desktop.
Save kkrypt0nn/9ff087bc8fb5036231062a634d0211c2 to your computer and use it in GitHub Desktop.
Solution for challenge Mysterious Broadcast at the Space Heroes 2022 CTF
import requests
binary = ""
while True:
r = requests.get("http://173.230.134.127/seq/7a060b9f-2dc5-459c-8fa3-ec5caace9566")
if (r.text == "~"):
break
binary += r.text
print(binary)
print("\n[+] Received: " + binary)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment