-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
56 lines (46 loc) · 1.45 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
import os
def run(scriptname):
with open(scriptname, 'r') as file:
scode = file.read()
exec(scode, globals())
input("\nPress Enter to continue...")
def main():
while True:
os.system("cls" if os.name == 'NT' else "clear")
print("""
Welcome to Adam's Term 3 DIGITECH Assignment
Scripts
(1) Phishing Target
(2) Password Checker
(3) Pin Cracker
(4) Unpatched Server Checker
(5) Hidden Bank Logs
(0) Exit""")
choice = int(input("\nPlease select which script to run: "))
if choice == 1:
script = "item1.py"
os.system("cls" if os.name == 'NT' else "clear")
run(script)
elif choice == 2:
os.system("cls" if os.name == 'NT' else "clear")
script = "item2.py"
run(script)
elif choice == 3:
os.system("cls" if os.name == 'NT' else "clear")
script = "item3.py"
run(script)
elif choice == 4:
os.system("cls" if os.name == 'NT' else "clear")
script = "item4.py"
run(script)
elif choice == 5:
os.system("cls" if os.name == 'NT' else "clear")
script = "item5.py"
run(script)
elif choice == 0:
break
else:
print("Invalid choice")
choice = int(input("\nPlease select which script to run: "))
if __name__ == "__main__":
main()