-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathzoic.py
More file actions
73 lines (52 loc) · 2.26 KB
/
Copy pathzoic.py
File metadata and controls
73 lines (52 loc) · 2.26 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
import os
from methods.l4 import *
from methods.l7 import *
from Tools.main import *
zoic = "\033[38;5;118m"
white = "\033[97m"
red = "\033[38;5;196m"
clear = "\033[0m"
def banner():
os.system('cls' if os.name == 'nt' else 'clear')
print(f"""
telegram {zoic}|{clear} t.me/cybermads {zoic}|{clear} Discord {zoic}|{clear} discord.gg/KDzjfn63
{zoic}
╔═╗╔═╗╦╔═╗
╔═╝║ ║║║
╚═╝╚═╝╩╚═╝ V5{clear}
Type "{zoic}help{clear}" to the view commands
""")
def main():
while True:
banner()
select = input(f"""
╔═══[{zoic}root{clear}@{zoic}ZOIC{clear}]
╚══{zoic}>{clear} """)
if select == "help":
os.system('cls' if os.name == 'nt' else 'clear')
print(f"""
telegram {zoic}|{clear} t.me/cybermads {zoic}|{clear} Discord {zoic}|{clear} discord.gg/KDzjfn63
{zoic}
╦ ╦╔═╗╦ ╔═╗
╠═╣║╣ ║ ╠═╝
╩ ╩╚═╝╩═╝╩ {clear}
github.com/cybermads
{zoic}╔═════════════════════════════════╗{clear}
{zoic}║{clear} {zoic}-{clear} l4 {zoic}|{clear} Layer4 Attack Menu {zoic}║{clear}
{zoic}║{clear} {zoic}-{clear} l7 {zoic}|{clear} Layer7 Attack Menu {zoic}║{clear}
{zoic}║{clear} {zoic}-{clear} tools {zoic}|{clear} Tools Menu {zoic}║{clear}
{zoic}║{clear} {zoic}-{clear} update {zoic}|{clear} Update ZOIC {zoic}║{clear}
{zoic}╚═════════════════════════════════╝{clear}
""")
input()
elif select == "l4":
layer4()
elif select == "l7":
layer7()
elif select == "tools":
tools()
elif select == "update":
os.system("git pull")
input()
if __name__ == "__main__":
main()