6g7r

Email insta

Mar 30th, 2021 (edited)
914
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. import requests
  2. import time
  3. from time import sleep
  4. from colorama import Fore
  5. print( Fore.CYAN, """
  6.  
  7.  
  8. .d8888b. .d8888b. 8888888888 8888888b.
  9. d88P Y88b d88P Y88b d88P 888 Y88b
  10. 888 888 888 d88P 888 888
  11. 888d888b. 888 d88P 888 d88P
  12. 888P "Y88b 888 88888 88888888 8888888P"
  13. 888 888 888 888 d88P 888 T88b
  14. Y88b d88P Y88b d88P d88P 888 T88b
  15. "Y8888P" "Y8888P88 d88P 888 T88b
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22. """)
  23.  
  24. email = input('File email : ')
  25. el = email
  26. file = open(el).read().splitlines()
  27. for file in file:
  28. url = 'https://www.instagram.com/accounts/account_recovery_send_ajax/'
  29. headers = {
  30. 'Accept': '/',
  31. 'Accept-Encoding': 'gzip, deflate, br',
  32. 'Accept-Language': 'en-US,en;q=0.5',
  33. 'Connection': 'keep-alive',
  34. 'Content-Length': '81',
  35. 'Content-Type': 'application/x-www-form-urlencoded',
  36. 'Cookie': 'missing',
  37. 'Host': 'www.instagram.com',
  38. 'Origin': 'https://www.instagram.com/',
  39. 'Referer': 'https://www.instagram.com/accounts/password/reset/',
  40. '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',
  41. 'X-CSRFToken': 'missing',
  42. 'X-IG-App-ID': '936619743392459',
  43. 'X-IG-WWW-Claim': '0',
  44. 'X-Instagram-AJAX': 'bba907d2f110',
  45. 'X-Requested-With': 'XMLHttpRequest'
  46. }
  47. data = {
  48. 'email_or_username': file,
  49. 'recaptcha_challenge_field': '',
  50. 'flow': '',
  51. 'app_id': ''
  52. }
  53. sleep(4.5)
  54. req = requests.post(url , headers=headers, data=data).status_code
  55. if req == 200:
  56. sleep(0.5)
  57. print(Fore.GREEN,'email Good ! >> : ' ,file)
  58. if req == 400:
  59. sleep(0.4)
  60. print(Fore.RED,'email Bad ! >> : ' ,file)
  61.  
Add Comment
Please, Sign In to add comment