-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathighack.sh
66 lines (59 loc) · 1.72 KB
/
ighack.sh
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
#!/bin/bash
# Colors
red='\033[1;31m'
rset='\033[0m'
gr='\033[1;32m'
yl='\033[1;33m'
cyan='\033[1;36m'
# Clear screen
clear
# ASCII banner
cat << "EOF"
██╗ ██████╗ ██╗ ██╗ █████╗ ██████╗██╗ ██╗
██║██╔════╝ ██║ ██║██╔══██╗██╔════╝██║ ██╔╝
██║██║ ███╗█████╗███████║███████║██║V1.0 █████╔╝
██║██║ ██║╚════╝██╔══██║██╔══██║██║ ██╔═██╗
██║╚██████╔╝ ██║ ██║██║ ██║╚██████╗██║ ██╗
╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝
EOF
# Menu
printf "\n${gr}>> Script By roony <<${rset}\n"
printf "\n${yl}1. Auto Attack\n"
printf "2. Manual Attack\n"
printf "3. About\n"
printf "4. Update\n"
printf "5. Info\n"
printf "6. Exit\n"
# Get user choice
read -p "${cyan}[ * ] Choose an option: ${rset}" option
# Handle choices
case $option in
1|01)
cd $HOME/ighack/main
bash ./auto.sh
;;
2|02)
cd $HOME/ighack/main
bash ./manual.sh
;;
3|03)
cd $HOME/ighack/core
bash ./about.sh
;;
4|04)
cd $HOME/ighack/core
bash ./update.sh
;;
5|05)
cd $HOME/ighack/core
bash ./info.sh
;;
6)
exit 0
;;
*)
printf "\n${red}[!]> Invalid Selection!${rset}\n"
sleep 1
;;
esac
exit 0