6g7r

ساحب انشاءات

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