Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
353
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.77 KB | None | 0 0
  1. import requests
  2. import random
  3. import string
  4. from threading import Thread
  5. from discord_webhook import DiscordWebhook
  6. from discord_webhook import DiscordWebhook, DiscordEmbed
  7.  
  8.  
  9. webhookbro = "https://discordapp.com/api/webhooks/589710512502079510/nup1_Q8XpZNMNRrRmHqX0br80RLPdaiFO3mQ7-NCag9N72YNwpZBKdPv34-ScsaiNheh"#Discord WebHook Here--
  10. password = "MadeWithLoveByVision"#Change this to your Password Which U Want TO Keep!
  11. threads_ammount = 50
  12.  
  13. #This part should not be changed. IF you know python then just fuck with this code
  14. #Current Version 1.0
  15. max_proxies = 0
  16. proxies = [line for line in list(set(open("Proxies.txt", encoding="UTF-8", errors="ignore").read().splitlines()))]
  17. for x in proxies:
  18. max_proxies += 1
  19. def run():
  20. global max_proxies
  21. while True:
  22. proxy = proxies[random.randint(0,max_proxies-1)]
  23. asd = ('').join(random.choices(string.ascii_letters + string.digits, k=10))
  24. with requests.Session() as (c):
  25. email = str(asd+"@gmail.com")
  26. password = "MadeWithLoveByVision"
  27. username = str("Jacob"+asd)
  28. name = str("Jacon"+"P")
  29. asd = random
  30. data = {
  31. 'email': email,
  32. 'password': password,
  33. 'username': username,
  34. 'first_name': name,
  35. 'client_id': 'W6mHTAAEAAHsVu2N0wGEChTQpTfn',
  36. 'seamless_login_enabled': '1',
  37. 'gdpr_s': '%5B0%2C2%2C0%2Cnull%5D',
  38. 'tos_version': 'eu',
  39. 'opt_into_one_tap': 'false'
  40. }
  41. headers = {
  42. 'accept': "*/*",
  43. 'accept-encoding': "gzip, deflate, br",
  44. 'accept-language': "en-US,en;q=0.8",
  45. 'content-length': "241",
  46. 'content-type': 'application/x-www-form-urlencoded',
  47. 'origin': "https://www.instagram.com",
  48. 'referer': "https://www.instagram.com/",
  49. 'user-agent': "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.81 Safari/537.36",
  50. 'x-csrftoken': "95RtiLDyX9J6AcVz9jtUIySbwf75WhvG",
  51. 'x-instagram-ajax': "c7e210fa2eb7",
  52. 'x-requested-with': "XMLHttpRequest",
  53. 'Cache-Control': "no-cache"
  54. }
  55. try:
  56. req = c.post("https://www.instagram.com/accounts/web_create_ajax/",data=data,headers=headers,proxies={'https': 'https://' + proxy,'http':'http://' + proxy}).json()
  57. try:
  58. created = req['account_created']
  59. if created is True:
  60. userid = req['user_id']
  61. print(f"Successfully Created A Account | Username : {username} | Password : {password}")
  62. webhook = DiscordWebhook(url=webhookurlbro, username="InstaFucker")
  63. embed = DiscordEmbed(title='InstaFucker', color=242424)
  64. embed.set_footer(text='InstaFucker By Vision#5699')
  65. embed.set_timestamp()
  66. embed.add_embed_field(name='Username', value=f'{username}')
  67. embed.add_embed_field(name='Password', value=f'{password}')
  68. embed.add_embed_field(name='Proxy', value=f'{proxy}')
  69. webhook.add_embed(embed)
  70. webhook.execute()
  71. save = open("Accounts.txt","a")
  72. save.write(f"{username}:{password}\n")
  73. else:
  74. dk = None
  75. except:
  76. dk = None
  77. except requests.ConnectionError:
  78. dk = None
  79. threads = []
  80. for i in range(0,threads_ammount):
  81. threads.append(Thread(target=run))
  82. for thread in threads:
  83. thread.start()
  84. for thread in threads:
  85. thread.join()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement