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