-
-
Save lordkebab/b8df3fbb3eb522c4da9b0d284c3eab79 to your computer and use it in GitHub Desktop.
x.com
This file contains 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 | |
import string | |
url = 'http://x.com/' | |
endpoints = string.ascii_lowercase + string.ascii_uppercase | |
for e in endpoints: | |
new_url = url + e | |
r = requests.post(new_url) | |
print('{}\t{}({})'.format(new_url, r.text, r.status_code)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment