-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmain.py
More file actions
66 lines (60 loc) · 1.67 KB
/
main.py
File metadata and controls
66 lines (60 loc) · 1.67 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
58
59
60
61
62
63
64
65
66
from Username import Name
import Email_Scan
from webshot import web
from url import geturl
from portScan import port
from colorama import Fore, Style
from Email_Scan import GetEmail
from phonenum import number_scan
from ipmap import get_ip
#from maclookup import macLookup
import pyfiglet
import fontstyle
MainFunctions = {
1: Name,
2: number_scan,
3: GetEmail,
4: geturl,
5: port,
6: web,
7: get_ip
}
def Menu():
Selection = 1
while True:
text = pyfiglet.figlet_format("INFOSINT")
ascii_banner = fontstyle.apply(text, 'bold')
print(Fore.RED + ascii_banner )
print(Style.RESET_ALL)
print('')
print("1. Username Scan")
print("2. Phone Number")
print("3. Email")
print("4. URL Scan")
print("5. Advance Port Scanner")
print("6. Website Scraper")
print("7. Ip Heatmap")
print("8. Exit")
print('')
Selection = int(input(">> "))
print('')
if (Selection == 1):
MainFunctions[Selection]()
elif (Selection == 2):
MainFunctions[Selection]()
elif (Selection == 3):
MainFunctions[Selection]()
elif (Selection == 4):
MainFunctions[Selection]()
elif (Selection == 5):
MainFunctions[Selection]()
elif Selection == 6:
MainFunctions[Selection]()
elif Selection == 7:
MainFunctions[Selection]()
elif Selection == 8:
exit()
else:
print("Please choose an Appropriate option")
if __name__ == "__main__":
Menu()