This repository has been archived by the owner on Jul 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
SkiptracerUK.py
64 lines (48 loc) · 2.52 KB
/
SkiptracerUK.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
import os
import time
from colorama import Fore
from plugins.plate_search import plate
from plugins.ip_lookup import lookup
def main_menu():
os.system("clear")
print("""
\033[1;32m░██████╗██╗░░██╗██╗██████╗░████████╗██████╗░░█████╗░░█████╗░███████╗██████╗░
██╔════╝██║░██╔╝██║██╔══██╗╚══██╔══╝██╔══██╗██╔══██╗██╔══██╗██╔════╝██╔══██╗
╚█████╗░█████═╝░██║██████╔╝░░░██║░░░██████╔╝███████║██║░░╚═╝█████╗░░██████╔╝
░╚═══██╗██╔═██╗░██║██╔═══╝░░░░██║░░░██╔══██╗██╔══██║██║░░██╗██╔══╝░░██╔══██╗
██████╔╝██║░╚██╗██║██║░░░░░░░░██║░░░██║░░██║██║░░██║╚█████╔╝███████╗██║░░██║
╚═════╝░╚═╝░░╚═╝╚═╝╚═╝░░░░░░░░╚═╝░░░╚═╝░░╚═╝╚═╝░░╚═╝░╚════╝░╚══════╝╚═╝░░╚═╝
Coded By Samuel20354
1. Plate search
2. Sherlock
3. IP search
4. Exit
-""")
option = str(input("OPTION: "))
if option == "1":
plate()
elif option == "2":
print(" -")
sherlock_username = input("Username to scan for: ")
print("")
os.system("clear")
plugins = "plugins/"
os.chdir(plugins)
os.system("python3 sherlock.py " + sherlock_username)
input(Fore.BLUE + "Press Enter to continue..." + Fore.RESET)
main_menu()
elif option == "3":
lookup()
elif option == "4":
print(" -")
print("Goodbye! [\033[0m\]")
exit()
else:
print(" -")
print("Invalid option, please try again.")
print(" -")
time.sleep(3)
main_menu()
if __name__ == "__main__":
main_menu()
main_menu()