· 4 years ago · Mar 12, 2021, 12:58 AM
1import requests
2from uuid import uuid4
3import secrets
4uuid = uuid4()
5re = requests.session()
6print("""
7███████╗██████╗░██████╗░░█████╗░██████╗░
8██╔════╝██╔══██╗██╔══██╗██╔══██╗██╔══██╗
9█████╗░░██████╔╝██████╔╝██║░░██║██████╔╝
10██╔══╝░░██╔══██╗██╔══██╗██║░░██║██╔══██╗
11███████╗██║░░██║██║░░██║╚█████╔╝██║░░██║
12╚══════╝╚═╝░░╚═╝╚═╝░░╚═╝░╚════╝░╚═╝░░╚═╝
13Add me on my instagram account @y9l5o
14""")
15tar = input('[+] Target :')
16thrd = int(input('[+] Thread :'))
17att = 0
18password = secrets.token_urlsafe(7)
19email = secrets.token_urlsafe(10) + '@gmail.com'
20url = 'https://i.instagram.com/api/v1/accounts/create/'
21head = {
22'User-Agent': 'Instagram 113.0.0.39.122 Android (24/5.0; 515dpi; 1440x2416; huawei/google; Nexus 6P; angler; angler; en_US)',
23'Accept': "*/*",
24'Accept-Encoding': 'gzip, deflate',
25'Accept-Language': 'en-US',
26'X-IG-Capabilities': '3brTvw==',
27'X-IG-Connection-Type': 'WIFI',
28'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
29'Host': 'i.instagram.com'
30}
31datareg = {
32'phone_id': uuid,
33'device_id': uuid,
34"ds_user_id=": 'error404',
35'email': email,
36'password': password,
37'username': tar,
38'first_name': '@y9l5o Registery'
39}
40def req():
41 global head , re
42 global datareg , att
43 while True:
44 reqre = re.post(url, headers=head, data=datareg).text
45 if 'challenge_required' in reqre:
46 print(f'[+] Done @{tar}')
47 open(f'@{tar}.txt', 'a').write(f'[+] User: {tar}\n[+] Pass: {password}\n[+] Email: {email}\n[-] Need Phone Number !\n[+] Coded By @y9l5o Enjoy!')
48 print('[+] Info Saved in txt file !')
49 exit()
50 elif 'Please wait a few minutes before you try again.' in reqre:
51 print(r'[-] Blocked')
52 exit()
53 elif 'username_is_taken' in reqre:
54 att +=1
55 print(f'\r[+] Req > @{tar} : [ {att} ]')
56 else:
57 print(r'[-] Some Error Happend , Try Again Later')
58 exit()
59req()