-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (29 loc) · 819 Bytes
/
Copy pathsetup.py
File metadata and controls
36 lines (29 loc) · 819 Bytes
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
#!/usr/bin/env python3
import os
import sys
import time
import pyfiglet
# Console Colors
W = '\033[0m\033[1m' # white (normal)
R = '\033[1m\033[31m' # red
G = '\033[1m\033[32m' # green
O = '\033[1m\033[33m' # orange
B = '\033[1m\033[34m' # blue
P = '\033[1m\033[35m' # purple
C = '\033[1m\033[36m' # cyan
GR = '\033[1m\033[37m' # gray
T = '\033[1m\033[93m' # tan
os.system('clear');
def logo():
logo = pyfiglet.figlet_format("SETUP \n", font = "slant")
print(R, logo)
logo()
print(R," FOR Wifi-Confusion")
os.system('apt install python3 mdk3 aircrack-ng')
def setup():
setup = pyfiglet.figlet_format("SETUP \n", font = "slant")
print(O, setup)
setup()
print(R,"Successfully setup completed")
time.sleep(3)
os.system('clear')