Advertisement
6g7r

checker instal v2

Apr 15th, 2021
2,867
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 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. f = input("[<>] file email")
  19.  
  20.  
  21. file = open(f).read().splitlines()
  22. for file in file:
  23.  
  24. url = 'https://www.instagram.com/accounts/account_recovery_send_ajax/'
  25. headers = {
  26. 'Accept': '/',
  27. 'Accept-Encoding': 'gzip, deflate, br',
  28. 'Accept-Language': 'en-US,en;q=0.5',
  29. 'Connection': 'keep-alive',
  30. 'Content-Length': '81',
  31. 'Content-Type': 'application/x-www-form-urlencoded',
  32. 'Cookie': 'missing',
  33. 'Host': 'www.instagram.com',
  34. 'Origin': 'https://www.instagram.com/',
  35. 'Referer': 'https://www.instagram.com/accounts/password/reset/',
  36. 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36',
  37. 'X-CSRFToken': 'missing',
  38. 'X-IG-App-ID': '936619743392459',
  39. 'X-IG-WWW-Claim': '0',
  40. 'X-Instagram-AJAX': 'bba907d2f110',
  41. 'X-Requested-With': 'XMLHttpRequest'
  42. }
  43. data = {
  44. 'email_or_username': file,
  45. 'recaptcha_challenge_field': '',
  46. 'flow': '',
  47. 'app_id': ''
  48. }
  49. sleep(5)
  50. req = requests.post(url, headers=headers, data=data).text
  51. if "No users found" in req:
  52. print( f'Bad email !!! >> : {file}')
  53. else:
  54. print( f'Good email !!! >> : {file}')
  55. url = f'https://mail.google.com/mail/gxlu?email={file}'
  56.  
  57. req = requests.get(url)
  58.  
  59. try:
  60. if req.headers['Set-Cookie'] != '':
  61. print('Not available',file)
  62.  
  63. except KeyError:
  64. print('Available',file)
  65. sleep(5)
  66.  
  67.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement