Last active
February 24, 2022 00:16
-
-
Save iNawaR1/8ff317aef082e940cdcbb1fbf6b426a9 to your computer and use it in GitHub Desktop.
Fastest and most high quality tik tok checker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import random | |
from colorama import Fore | |
import time | |
s = Fore.RED | |
m = Fore.BLUE | |
a = Fore.GREEN | |
p = Fore.BLACK | |
r = Fore.CYAN | |
#Very Important!!! the banned "Users" will be Writen as "Available" i am trying to make fixes for that soon | |
print(f'{m}Please make user.txt folder to start this tool') | |
iNaWaR = 'user.txt' | |
file = open(iNaWaR, 'r') | |
print(f'{s}if you have telegram you can get your Available users as a message from your bot. (You can scip this part if you want)') | |
ID_tele=input(f"{m}[?] id Telegram : ") | |
token_bot=input(f"{m}[?] bot Token : ") | |
headers={ | |
"accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", | |
"user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36", | |
"Connection": "close", | |
"Host": "www.tiktok.com", | |
"Accept-Encoding": "gzip, deflate", | |
"Cache-Control": "max-age=0" | |
} | |
def usermaker(): | |
uesr = input( | |
f"{r}Type any first letters or numbers for the users (NOTE if you want 100% random users just click Enter don't type here anything) -> : ") | |
ch = '1234567890qwertyuiopasdfghjklzxcvbnm._' # you can make your own users letter list (; | |
amount = input(f'{r}Type How many users You want -> : ') | |
amount = int(amount) | |
l2 = input( | |
f'{r}Type 2 if you want 4 letters users | Type 3 if you want 5 letters users | Type 4 if you want 6 letters users | If you choosed 100% random users type here how many letters you want in your users for example 4 this will generate you 4 letters users. -> :') | |
l2 = int(l2) | |
iNaWaR = input(f"{r}Type file name (user.txt)..!! =>> : ") | |
N1 = iNaWaR | |
for PESS in range(amount): | |
PESS = '' | |
for item in range(l2): | |
PESS = '' | |
for item in range(l2): | |
PESS += random.choice(ch) | |
print(uesr + PESS) | |
with open(N1, 'a') as x: | |
x.write(uesr + PESS + '\n') | |
else: | |
print(f"{m}Done!! You will find your users in -> : {N1}") | |
exit() | |
def checker(): | |
while True: | |
user = file.readline().split('\n')[0] | |
if user == '': | |
break | |
tiktoklog = f'https://www.tiktok.com/@{user}' | |
rq = requests.get(tiktoklog, headers=headers) | |
if rq.status_code == 404: | |
print(f'{a}[+] Available / banned -->> @{user}'.format(user)) | |
tele = ( | |
f'https://api.telegram.org/bot{token_bot}/sendMessage?chat_id={ID_tele}&text=\n𖡃 𝚄𝚂𝙴𝚁: {user}\n\n @iNaWaR1 New Hunt ') | |
re = requests.post(tele) | |
with open('Available.txt', 'a') as x: | |
tl = 'Available USER --> ' | |
x.write(tl + user + '\n') | |
else: | |
print(f"{s}[-] User Not Available -->> @{user}") | |
print(f"""{m} | |
[1] TikTok user checker (if you have a Users List) | |
[2] Generate users to check Advanced (if you don't have Users List) | |
Very Important!!! the banned "Users" will be Writen as "Available" | |
""") | |
choose = input(f"{a}Choose A Number: ") | |
if "1" in choose: | |
print("================================================================") | |
checker() | |
elif "2" in choose: | |
print("================================================================") | |
usermaker() | |
else: | |
print(f"{s}Your Answer Must Be ( 1 or 2 ).") | |
exit(iNaWaR) | |
#iNaWaR |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment