-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathf01c.py
More file actions
49 lines (43 loc) Β· 1.27 KB
/
f01c.py
File metadata and controls
49 lines (43 loc) Β· 1.27 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
#!/usr/bin/env python3
import os
def banner():
print("""
ββββββββββββββββββββββββββββββββββββββ
β F01C - Cyber Toolkit β
β For OSINT, Recon, and Scan β
ββββββββββββββββββββββββββββββββββββββ
""")
def menu():
print("""
[1] OSINT - Cek Username
[2] Email Leak Checker
[3] Phone HLR Lookup
[4] IP Address Info
[5] Domain Whois Info
[6] Port Scanner
[0] Exit
""")
def main():
banner()
while True:
menu()
choice = input("Pilih opsi > ")
if choice == '1':
os.system("python3 tools/osint.py")
elif choice == '2':
os.system("python3 tools/email_leak.py")
elif choice == '3':
os.system("python3 tools/phone_lookup.py")
elif choice == '4':
os.system("python3 tools/ip_lookup.py")
elif choice == '5':
os.system("python3 tools/domain_info.py")
elif choice == '6':
os.system("python3 tools/port_scan.py")
elif choice == '0':
print("Keluar...")
break
else:
print("Pilihan tidak valid!")
if __name__ == "__main__":
main()