· 5 years ago · Feb 25, 2020, 04:50 PM
1import requests
2import random
3from art import *
4from caugetch import pause_exit
5import sys
6import time
7
8count = 0
9
10length = input('Length:')
11password = input('Password:')
12
13def random_char(y):
14 return''.join(random.choice('abcdefghijklmnopqrstuvwxyz1234567890_') for x in range(y))
15
16
17for i in range(sys.maxsize ** 10):
18 username1 = random_char(int(length))
19 email1 = random_char(8) + '@gmail.com'
20 password1 = '100100'
21 fullname1 = '3bpq - ZZAN Py Check'
22
23 url = 'https://i.instagram.com/accounts/web_create_ajax/attempt/'
24
25 check_data = {
26 'email': email1,
27 'password': password1,
28 'username': username1,
29 'first_name': fullname1
30 }
31
32 check_headers = {
33 'Proxy': '',
34 'Method': 'POST',
35 'UserAgent': "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36",
36 "X-CSRFToken": "K8w4M4zDEkZmULiet376lwbZiH445NSj",
37 'ContentType': "application/x-www-form-urlencoded",
38 'Referer': "https://www.instagram.com/",
39 'KeepAlive': 'True',
40 }
41
42 req_check = requests.session()
43 r_check = req_check.post(url=url, data=check_data, headers=check_headers)
44
45 if('true, "username_suggestions"' in r_check.text) :
46
47 username = username1
48 email = random_char(8) + '@gmail.com'
49 pass1 = password
50 fullname = '3bpq - N5Y REG Checker'
51
52
53 url = 'https://www.instagram.com/accounts/web_create_ajax/'
54
55 register_data = {
56 'email': email,
57 'password': password,
58 'username': username,
59 'first_name': fullname
60}
61
62 register_headers = {
63 'Proxy': '',
64 'Method': 'POST',
65 'UserAgent': "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36",
66 "X-CSRFToken": "K8w4M4zDEkZmULiet376lwbZiH445NSj",
67 'ContentType': "application/x-www-form-urlencoded",
68 'Referer': "https://www.instagram.com/",
69 'KeepAlive': 'True',
70}
71
72 req = requests.session()
73 r = req.post(url=url, data=register_data, headers=register_headers)
74 if('"account_created": false, "errors": {"ip"' in r.text) :
75 count += 1
76 print('[', str(count), ']: @' + username1, "is Available.\nBanned")
77 print('Email:' + email, '\nPassword :' + password)
78 elif('<html lang="en" class="no-js not-logged-in client-root">' in r.text):
79 count += 1
80 print('[', str(count), ']: @' + username1, "is Available.\nCreated")
81 print('Email:' + email, '\nPassword :' + password)
82 else:
83 count += 1
84 print('[', str(count), ']: @' + username1, "Try Maybe is with you ")
85 print('Email:'+email,'\nPassword :' + password)
86 elif('"username_held_by_others"' in r_check.text):
87 f = open('list14d.txt', 'w')
88 print(username1, file=f)
89 count += 1
90 print('[',str(count),']: @'+username1,'is 14 Days.')
91 else:
92 count += 1
93 print('['+str(count)+']: @' + username1, "isn't Available.")