forked from AS-BIG-FEMALE/Docker.md
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpython
27 lines (27 loc) · 975 Bytes
/
python
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import requests
import random
import json
#P_W_7
def dw():
while True:
zan=int("".join(random.choice('678')for i in range(1)));re="".join(random.choice('1234567890')for i in range(zan));url = f'http://i.instagram.com/api/v1/users/{re}/info/';headers = {
'Host': 'i.instagram.com',
'Connection': 'Keep-Alive',
'User-Agent': 'Instagram 6.12.1 Android (30/11; 480dpi; 1080x2298; HONOR; ANY-LX2; HNANY-Q1; qcom; en_IQ)',
'Accept-Language': 'en-IQ, en-US',
'X-IG-Connection-Type': 'MOBILE(LTE)',
'X-IG-Capabilities': 'AQ==',
'Accept-Encoding': 'gzip',
};rr = requests.get(url,headers=headers).text
if 'User not found' in rr:
print(f' Bad ID : {re}')
dw()
else:
rre=json.loads(rr);user = rre['user']['username'];print(f' God ID : {user} : {re}')
with open("usernamezaidTool.txt","a") as zaid:
zaid.write(f"{user}\n")
import threading;Threads=[]
for i in range(25):
x = threading.Thread(target=dw);x.start();Threads.append(x)
for zxn in Threads:
zxn.join