-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
kachAI.py
112 lines (100 loc) · 5.1 KB
/
kachAI.py
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
import requests
import urllib.parse
from colorama import init, Fore, Style
# Initialize colorama
init()
# Define the social media platforms dictionary
social_media_platforms = {
"Twitter": {
"url": "https://nitter.it/{}",
"username_claimed": ""
},
"Instagram": {
"url": "https://www.instagram.com/{}",
"username_claimed": ""
},
"Facebook": {
"url": "https://www.facebook.com/{}",
"username_claimed": ""
},
"Roblox": {
"url": "https://www.roblox.com/user.aspx?username={}",
"username_claimed": ""
},
"rblx.trade": {
"url": "https://rblx.trade/p/{}",
"username_claimed": ""
},
"YouTube": {
"url": "https://www.youtube.com/@{}",
"username_claimed": ""
},
"Twitch": {
"url": "https://www.twitch.tv/{}",
"username_claimed": ""
},
"Snapchat": {
"url": "https://www.snapchat.com/add/{}",
"username_claimed": ""
},
"Snapchat Stories": {
"url": "https://story.snapchat.com/s/{}",
"username_claimed": ""
},
"Telegram": {
"url": "https://t.me/{}",
"username_claimed": ""
},
"TikTok": {
"url": "https://www.tiktok.com/@{}",
"username_claimed": ""
},
"Doxbin": {
"url": "https://doxbin.com/user/{}",
"username_claimed": ""
}
}
# Create a function to check if a username is available on a social media platform
def check_username(website: str, username: str) -> bool:
url = website.format(urllib.parse.quote(username))
response = requests.get(url)
if response.status_code == 200:
return True
else:
return False
# ASCII art for "hello"
ascii_art = f"{Fore.LIGHTCYAN_EX}" + r"""
,. - ., .·¨'`; ,.·´¨;\ ,., ' ,. - ., , ·. ,.-·~·., ‘ ,. ,·´'; '
,·'´ ,. - , ';\ '; ;'\ '; ;::\ ;´ '· ., ,' ,. - ., `' ·, / ·'´,.-·-., `,'‚ ;'´*´ ,'\ ,' ';'\°
,·´ .'´\:::::;' ;:'\ ' ; ;::'\ ,' ;::'; .´ .-, ';\ '; '·~;:::::'`, ';\ / .'´\:::::::'\ '\ ° ; ';::\ ; ;::'\
/ ,'´::::'\;:-/ ,' ::; ' ; ;::_';,. ,.' ;:::';° / /:\:'; ;:'\' ; ,':\::;:´ .·´::\' ,·' ,'::::\:;:-·-:'; ';\‚ ; '\;' ; ;:::;
,' ;':::::;'´ '; /\::;' ' .' ,. -·~-·, ;:::'; ' ,' ,'::::'\'; ;::'; ; ·'-·'´,.-·'´:::::::'; ;. ';:::;´ ,' ,':'\‚ ,' ,'`\ \ ; ;:::;
; ;:::::; '\*'´\::\' ° '; ;'\::::::::; '/::::; ,.-·' '·~^*'´¨, ';::; ;´ ':,´:::::::::::·´' '; ;::; ,'´ .'´\::';‚ ; ;::;'\ '\ ; ;:::;
'; ';::::'; '\::'\/.' ; ';:;\;::-··; ;::::; ':, ,·:²*´¨¯'`; ;::'; '; , `·:;:-·'´ '; ':;: ,.·´,.·´::::\;'° ; ;:::; '\ '\ ,' ;:::;'
\ '·:;:'_ ,. -·'´::::::\' \:::::\ \·.'::::; ,' ,'::::\·²*'´¨¯':,'\:; \·-;::\:::::'`:·-.,'; \\:¯::\:::::::;:·´ ;.'\::; \`*´\::\; °
'\:` · .,. -·:´::::::\' \:::::\ \·.'::::; ,' ,'::::\·²*'´¨¯':,'\:; \·-;::\:::::'`:·-.,'; \\:¯::\:::::::;:·´ ;.'\::; \`*´\::\; °
\:::::::\:::::::;:·'´' \;:·´ \:\::'; \`¨\:::/ \::\' \::\:;'` ·:;:::::\::\' `\:::::\;:::´ ° \:::\' '\:::\:' '
`· :;::\;::-·´ `·\;' '\::\;' '\;' ' '·-·' `' · -':::'' ¯ \:' `*´'‚
' `¨' ‘
""" + f"{Style.RESET_ALL}"
print(ascii_art)
# Get the usernames from the user
print(f"{Fore.LIGHTBLUE_EX}Type usernames here (space them out){Style.RESET_ALL} ")
code = input(":")
# Find the usernames in the code
usernames = code.split()
# Print the usernames
print(f"\n{Fore.RED}Korror himself is searching up usernames:{Style.RESET_ALL}")
for username in usernames:
print(username)
# Check if the usernames are available on the social media platforms
for username in usernames:
for platform, data in social_media_platforms.items():
# Get the URL for the username on the platform
url = data["url"].format(username)
# Check if the username is available on the platform
if check_username(url, username):
print(f"\n{Fore.LIGHTCYAN_EX}{username} is available on {platform}")
print(f"Profile URL: {Fore.MAGENTA}{url}{Style.RESET_ALL}")
else:
print(f"\n{Fore.LIGHTRED_EX}{username} is not available on {platform}{Style.RESET_ALL}")