This repository has been archived by the owner on Sep 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathmain.py
67 lines (54 loc) · 2.62 KB
/
main.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
import os
import time
from colorama import init, Fore, Style
import systemFiles.social_deanon as sd
import systemFiles.ip_deanon as idn
import systemFiles.phone_deanon as phd
init()
red = Fore.RED
reset = Style.RESET_ALL
def logo():
logo_text = """\n\n
██████╗░███████╗░█████╗░███╗░░██╗░█████╗░███╗░░██╗
██╔══██╗██╔════╝██╔══██╗████╗░██║██╔══██╗████╗░██║
██║░░██║█████╗░░███████║██╔██╗██║██║░░██║██╔██╗██║
██║░░██║██╔══╝░░██╔══██║██║╚████║██║░░██║██║╚████║
██████╔╝███████╗██║░░██║██║░╚███║╚█████╔╝██║░╚███║
╚═════╝░╚══════╝╚═╝░░╚═╝╚═╝░░╚══╝░╚════╝░╚═╝░░╚══╝
"""
os.system('cls' if os.name == 'nt' else 'clear')
for line in logo_text.split('\n'):
print(line)
time.sleep(0.1)
print(Style.BRIGHT + ' Разработчик: nXoji v0.1 Made in Ukraine' + reset)
time.sleep(2)
def menu():
while True:
os.system('cls' if os.name == 'nt' else 'clear')
print('''
╭━╮╭━┳━━━┳━╮╱╭┳╮╱╭╮
┃┃╰╯┃┃╭━━┫┃╰╮┃┃┃╱┃┃
┃╭╮╭╮┃╰━━┫╭╮╰╯┃┃╱┃┃
┃┃┃┃┃┃╭━━┫┃╰╮┃┃┃╱┃┃
┃┃┃┃┃┃╰━━┫┃╱┃┃┃╰━╯┃
╰╯╰╯╰┻━━━┻╯╱╰━┻━━━╯''')
print(' Вы в главном меню\n 1) Проверка по нику\n 2) Проверка IP-adress \n'
' 3) Проверка BSSID\n 4) Проверка по номеру телефона')
print(' 0) ! ВЫХОД !')
home_page = int(input('\n [+] Cделайте выбор: '))
if home_page == 0:
break
elif home_page == 1:
sd.SocialDeanon()
elif home_page == 2:
idn.IpInfo()
elif home_page == 3:
idn.bssid_info()
elif home_page == 4:
phd.PhoneNumber()
else:
print(red + ' Введите существующий пункт меню!' + reset)
continue
if __name__ == '__main__':
logo()
menu()