-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtoolkit.py
More file actions
83 lines (64 loc) · 1.41 KB
/
Copy pathtoolkit.py
File metadata and controls
83 lines (64 loc) · 1.41 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/usr/bin/python3
from time import sleep
from config.colours import *
from config.commands import update
# Update on start up
update()
sleep(1)
# Clear Screen (Windows/*NIX)
clear()
# Start Up Banner
Banner()
Copyright()
sleep(1)
clear()
# Print Menu
Menu()
## Networks ##
Network()
Seperator()
## Web Applications ##
Webapp()
Seperator()
## Brute Force ##
Brute()
Seperator()
## Utility ##
Settings()
try:
selection = input("\nSelect a Program Number: ")
print("")
match selection:
# Networks
case "1":
from networks import netscan
case "2":
from networks import portscan
# Web Application
case "3":
from webapp import directory_enum
case "4":
from webapp import subdomain_enum
# Brute Force
case "5":
from bruteforce import hashcracker
# Utility
# Colour Settings
case "99":
print("Change Colour Settings from config/colours.py")
# Exit
case "0":
info("Until Next Time!\n")
sleep(1)
clear()
exit()
# Error Handling
case TypeError:
fail("Error: Bad Option")
except KeyboardInterrupt:
quit_message = input(
Fore.LIGHTRED_EX + "\n[!] Exiting - Keyboard Interrupt" + Style.RESET_ALL).lower()
exit()
except Exception as e:
fail(e)
exit()