-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup-Kali.sh
More file actions
executable file
·31 lines (27 loc) · 827 Bytes
/
setup-Kali.sh
File metadata and controls
executable file
·31 lines (27 loc) · 827 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
#!/bin/bash
source "./Common/common.sh"
source "./Common/shell.sh"
source "./Common/software.sh"
source "./Kali/system.sh"
source "./Kali/software.sh"
while true; do
clear
echo -e "\e[35mKali post-installation scripts.\e[0m"
echo
PS3="Select an option to run: "
options=("System setup." \
"Install web hacking software.")
select option in "${options[@]}" "Quit."; do
case "$option" in
"${options[0]}") updateSystem;
installDefaultSoftware;
installEza;
setupEza;
setupEzaBashAliasNoIcons;
sleep 3; break;;
"${options[1]}") installWebHackingSoftware; sleep 3; break;;
"Quit.") exit;;
*) echo -e "\e[36m[\e[31mERROR\e[36m] Invalid option.\e[0m";
esac
done
done