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