Skip to content

Instantly share code, notes, and snippets.

@Ge0rg3
Created September 30, 2018 20:36
Show Gist options
  • Save Ge0rg3/10bb9779655e1e12795fadc72e49ef6c to your computer and use it in GitHub Desktop.
Save Ge0rg3/10bb9779655e1e12795fadc72e49ef6c to your computer and use it in GitHub Desktop.
Written for my CSAW Red 2018 Clicker Write-up
import requests as rq
for i in range(1,1000):
headers = {
"bring_back_random_click":"hhhhhhhhhh",
}
req = rq.get("http://web.chal.csaw.io:10106/default/", headers=headers)
if len(req.text) != 243:
print req.text[:-1]
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment