Advertisement
Guest User

discrimin-http(s).py

a guest
Apr 23rd, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.54 KB | None | 0 0
  1. u = 'au'
  2. from requests import get, post
  3. with open('proxies-http(s).txt') as proxies:
  4.     for proxy in proxies.readlines():
  5.         p = proxy.rstrip('\n')
  6.         proxies = {'http': p, 'https': p}
  7.         try:
  8.             t = post('https://discordapp.com/api/auth/register', timeout=10, proxies=proxies, json={'consent':'true','username':u}).json()
  9.             try:print(f'\n\033[96m{u}#'+get('https://discordapp.com/api/v6/users/@me',timeout=10,proxies=proxies,headers={'Authorization':t['token']}).json()['discriminator'],t['token'],p,'\033[0m\n')
  10.             except:print(t,p)
  11.         except:pass
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement