-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
57 lines (46 loc) · 2.02 KB
/
main.py
File metadata and controls
57 lines (46 loc) · 2.02 KB
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
from modules.utils import print_welcome_message, exit
from modules import IPGlobeTracker, P2P, WebsiteCookie, WhoisDomainLookup, DNSInspector, Sherlock, Holehe, ExtractMetaData, PhoneNumberLookup
from colorama import Fore, Style
import signal
def main():
print_welcome_message()
#CTRL+C HANDLER
signal.signal(signal.SIGINT, exit)
while True:
print(f"""
[{Fore.CYAN}1{Style.RESET_ALL}] - Sherlock [{Fore.CYAN}6{Style.RESET_ALL}] - Get websites cookies
[{Fore.CYAN}2{Style.RESET_ALL}] - Phone Number Lookup [{Fore.CYAN}7{Style.RESET_ALL}] - WHOIS Domain Lookup
[{Fore.CYAN}3{Style.RESET_ALL}] - IP tracker [{Fore.CYAN}8{Style.RESET_ALL}] - DNS Inspector
[{Fore.CYAN}4{Style.RESET_ALL}] - Holehe [{Fore.CYAN}9{Style.RESET_ALL}] - Metadata Extractor
[{Fore.CYAN}5{Style.RESET_ALL}] - Encrypted chat (P2P)
""")
user_choice = input(f"\n{Fore.CYAN}┌─[Insert your choice] \n└──> {Style.RESET_ALL}")
if not user_choice.strip():
print(f"{Fore.RED}[X] Input cannot be empty.{Style.RESET_ALL}")
continue
else:
choice = int(user_choice)
#CHOICE HANDLING
match choice:
case 1:
Sherlock().sherlock_manager()
case 2:
PhoneNumberLookup().phone_number_lookup_manager()
case 3:
IPGlobeTracker().ip_globetracker_manager()
case 4:
Holehe().holehe_manager()
case 5:
P2P().p2p_manager()
case 6:
WebsiteCookie().get_website_cookies_manager()
case 7:
WhoisDomainLookup().whois_lookup_manager()
case 8:
DNSInspector().dns_inspector_manager()
case 9:
ExtractMetaData().get_metadata_manager()
case _:
pass # default case
if __name__ == "__main__":
main()