Skip to content

Instantly share code, notes, and snippets.

@lordkebab
Created January 12, 2021 15:36
Show Gist options
  • Save lordkebab/b8df3fbb3eb522c4da9b0d284c3eab79 to your computer and use it in GitHub Desktop.
Save lordkebab/b8df3fbb3eb522c4da9b0d284c3eab79 to your computer and use it in GitHub Desktop.
x.com
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