· 4 years ago · Jul 08, 2021, 04:52 PM
1import requests
2import time
3from random import choice
4from uuid import uuid4
5uid = uuid4()
6rr = requests.session()
7print("""
8███████╗██████╗░██████╗░░█████╗░██████╗░
9██╔════╝██╔══██╗██╔══██╗██╔══██╗██╔══██╗
10█████╗░░██████╔╝██████╔╝██║░░██║██████╔╝
11██╔══╝░░██╔══██╗██╔══██╗██║░░██║██╔══██╗
12███████╗██║░░██║██║░░██║╚█████╔╝██║░░██║
13╚══════╝╚═╝░░╚═╝╚═╝░░╚═╝░╚════╝░╚═╝░░╚═╝
14Add me on my instagram account @zd0_i
15""")
16slep = int(input('[+] Sleep : '))
17while True:
18 password = ''
19 chp = 'qwertyuiopasdfghjklzxcvbnm1234567890'
20 for p in range(8):
21 password += choice(chp)
22 email = ''
23 for e in range(9):
24 email += choice(chp)
25 email += '@gmail.com'
26 user = ''
27 for u in range(7):
28 user += choice(chp)
29 url = 'https://i.instagram.com/api/v1/accounts/create_business/'
30 dtrg = {
31 'phone_id': uid,
32 'device_id': uid,
33 'ds_user_id=': password,
34 'email': email,
35 'password': password,
36 'username': user,
37 'first_name': '@zd0i_ Maker'
38 }
39 hdrg = {
40 'User-Agent': 'Instagram 135.0.0.34.124 Android (24/5.0; 515dpi; 1440x2416; huawei/google; Nexus 6P; angler; angler; en_US)',
41 'Accept': "*/*",
42 'Accept-Encoding': 'gzip, deflate',
43 'Accept-Language': 'en-US',
44 'X-IG-Capabilities': '3brTvw==',
45 'X-IG-Connection-Type': 'WIFI',
46 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
47 'Host': 'i.instagram.com'
48 }
49 rg = rr.post(url, headers=hdrg, data=dtrg).text
50 if 'challenge_required' in rg:
51 open(f'@{user} info.txt','a').write(f'[+] Username : {user}\n[+] Password : {password}\n[+] Email : {email}\n[-] Status : Need Phone Number\n[+] Coded By @y9l5o Enjoy!')
52 print(f'[+] Done Create Account @{user}\n[+] Info saved in txt file !')
53 elif 'feedback_required' or 'Please try again' in rg:
54 print('[-] Blocked')
55 exit()
56 elif 'account_created' in rg:
57 open(f'@{user} info.txt','a').write(f'[+] Username : {user}\n[+] Password : {password}\n[+] Email : {email}\n[+] Status : Created\n[+] Coded By @zd0i_ Enjoy!')
58 else:
59 print('[-] Some Error Happend , Try again')
60 print(rg)
61 exit()
62 time.sleep(slep)
63