-
Notifications
You must be signed in to change notification settings - Fork 7
/
wifiAttack.sh
225 lines (205 loc) · 9.09 KB
/
wifiAttack.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
#!/bin/bash
# By @m4lal0
# Regular Colors
Black='\033[0;30m' # Black
Red='\033[0;31m' # Red
Green='\033[0;32m' # Green
Yellow='\033[0;33m' # Yellow
Blue='\033[0;34m' # Blue
Purple='\033[0;35m' # Purple
Cyan='\033[0;36m' # Cyan
White='\033[0;97m' # White
Color_Off='\033[0m' # Text Reset
# Additional colors
LGray='\033[0;37m' # Ligth Gray
DGray='\033[0;90m' # Dark Gray
LRed='\033[0;91m' # Ligth Red
LGreen='\033[0;92m' # Ligth Green
LYellow='\033[0;93m' # Ligth Yellow
LBlue='\033[0;94m' # Ligth Blue
LPurple='\033[0;95m' # Light Purple
LCyan='\033[0;96m' # Ligth Cyan
# Bold
BBlack='\033[1;30m' # Black
BGray='\033[1;37m' # Gray
BRed='\033[1;31m' # Red
BGreen='\033[1;32m' # Green
BYellow='\033[1;33m' # Yellow
BBlue='\033[1;34m' # Blue
BPurple='\033[1;35m' # Purple
BCyan='\033[1;36m' # Cyan
BWhite='\033[1;37m' # Bold White
# Underline
UBlack='\033[4;30m' # Black
UGray='\033[4;37m' # Gray
URed='\033[4;31m' # Red
UGreen='\033[4;32m' # Green
UYellow='\033[4;33m' # Yellow
UBlue='\033[4;34m' # Blue
UPurple='\033[4;35m' # Purple
UCyan='\033[4;36m' # Cyan
UWhite='\033[4;37m' # White
# Background
On_Black='\033[40m' # Black
On_Red='\033[41m' # Red
On_Green='\033[42m' # Green
On_Yellow='\033[43m' # Yellow
On_Blue='\033[44m' # Blue
On_Purple='\033[45m' # Purple
On_Cyan='\033[46m' # Cyan
On_White='\033[47m' # White
VERSION=1.0.1
export DEBIAN_FRONTEND=noninteractive
trap ctrl_c INT
function ctrl_c(){
echo -e "\n${LBlue}[${BYellow}!${LBlue}] ${BRed}Saliendo...${Color_Off}"
stopped
exit 0
}
function helpPanel(){
echo -e "\n${BGray}Herramienta hecha en Bash ideal para automatizar ataques WiFi (WEP/WPA/WPA2 - PSK) destinados a la obtención de la contraseña.${Color_Off}\n"
echo -e "${BGray}USO: \n\t ${BGreen}./wifiAttack.sh${Color_Off}\n"
echo -e "${BGray}OPCIONES:${Color_Off}"
echo -e "\t${LBlue}[${BRed}-i , --install${LBlue}] \t${BPurple}Instalación de herramientas para la correcta ejecución del script.${Color_Off}"
echo -e "\t${LBlue}[${BRed}-u , --update${LBlue}] \t\t${BPurple}Actualizar la herramienta.${Color_Off}\n"
echo -e "\t${LBlue}[${BRed}-h , --help${LBlue}] \t\t${BPurple}Mostrar este panel de ayuda.${Color_Off}\n"
tput cnorm; exit 0
}
function banner(){
clear
echo -e "\t${BGreen}██╗ ██╗██╗███████╗██╗ ${BRed} █████╗ ████████╗████████╗ █████╗ ██████╗██╗ ██╗${Color_Off}"
echo -e "\t${BGreen}██║ ██║██║██╔════╝██║ ${BRed} ██╔══██╗╚══██╔══╝╚══██╔══╝██╔══██╗██╔════╝██║ ██╔╝${Color_Off}"
echo -e "\t${BGreen}██║ █╗ ██║██║█████╗ ██║ ${BRed} ███████║ ██║ ██║ ███████║██║ █████╔╝ ${Color_Off}"
echo -e "\t${BGreen}██║███╗██║██║██╔══╝ ██║ ${BRed} ██╔══██║ ██║ ██║ ██╔══██║██║ ██╔═██╗ ${Color_Off}"
echo -e "\t${BGreen}╚███╔███╔╝██║██║ ██║ ${BRed} ██║ ██║ ██║ ██║ ██║ ██║╚██████╗██║ ██╗${Color_Off}"
echo -e "\t${BGreen} ╚══╝╚══╝ ╚═╝╚═╝ ╚═╝ ${BRed} ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝${Color_Off}"
echo -e "\t\t\t\t\t\t\t\t\t${BBlue}By ${BGray}@m4lal0${Color_Off}\n"
}
function checkUpdate(){
GIT=$(curl --silent https://github.com/m4lal0/wifiAttack/blob/main/wifiAttack.sh | grep 'VERSION=' | cut -d">" -f2 | cut -d"<" -f1 | cut -d"=" -f 2)
if [[ "$GIT" == "$VERSION" || -z $GIT ]]; then
echo -e "${BGreen}[✔]${Color_Off} ${BGreen}La versión actual es la más reciente.${Color_Off}\n"
tput cnorm; exit 0
else
echo -e "${Yellow}[*]${Color_Off} ${IWhite}Actualización disponible${Color_Off}"
echo -e "${Yellow}[*]${Color_Off} ${IWhite}Actualización de la versión${Color_Off} ${BWhite}$VERSION${Color_Off} ${IWhite}a la${Color_Off} ${BWhite}$GIT${Color_Off}"
update="1"
fi
}
function installUpdate(){
echo -en "${Yellow}[*]${Color_Off} ${IWhite}Instalando actualización...${Color_Off}"
git clone https://github.com/m4lal0/wifiAttack &>/dev/null
chmod +x wifiAttack/wifiAttack.sh && mv wifiAttack/src/* src &>/dev/null
mv wifiAttack/wordlists/* wordlists &>/dev/null
mv wifiAttack/wifiAttack.sh . &>/dev/null
if [ "$(echo $?)" == "0" ]; then
echo -e "${BGreen}[ OK ]${Color_Off}"
else
echo -e "${BRed}[ FAIL ]${Color_Off}"
tput cnorm && exit 1
fi
echo -en "${Yellow}[*]${Color_Off} ${IWhite}Limpiando...${Color_Off}"
wait
rm -rf wifiAttack &>/dev/null
if [ "$(echo $?)" == "0" ]; then
echo -e "${BGreen}[ OK ]${Color_Off}"
else
echo -e "${BRed}[ FAIL ]${Color_Off}"
tput cnorm && exit 1
fi
echo -e "\n${BGreen}[✔]${Color_Off} ${IGreen}Versión actualizada a${Color_Off} ${BWhite}$GIT${Color_Off}\n"
tput cnorm && exit 0
}
function update(){
banner
echo -e "\n${BBlue}[+]${Color_Off} ${BWhite}wifiAttack Versión $VERSION${Color_Off}"
echo -e "${BBlue}[+]${Color_Off} ${BWhite}Verificando actualización de wifiAttack${Color_Off}"
checkUpdate
echo -e "\t${BWhite}$VERSION ${IWhite}Versión Instalada${Color_Off}"
echo -e "\t${BWhite}$GIT ${IWhite}Versión en Git${Color_Off}\n"
if [ "$update" != "1" ]; then
tput cnorm && exit 0;
else
echo -e "${BBlue}[+]${Color_Off} ${BWhite}Necesita actualizar!${Color_Off}"
tput cnorm
echo -en "${BPurple}[?]${Color_Off} ${BCyan}Quiere actualizar? (${BGreen}Y${BCyan}/${BRed}n${BCyan}):${Color_Off} " && read CONDITION
tput civis
case "$CONDITION" in
n|N) echo -e "\n${LBlue}[${BYellow}!${LBlue}] ${BRed}No se actualizo, se queda en la versión ${BWhite}$VERSION${Color_Off}\n" && tput cnorm && exit 0;;
*) installUpdate;;
esac
fi
}
function install(){
banner
dependencies=(aircrack-ng macchanger terminator net-tools mdk4 hcxdumptool hcxtools hashcat)
echo -e "\n${LBlue}[${BBlue}+${LBlue}] ${BBlue}Comprobando herramientas necesarias:${Color_Off}\n"
for program in "${dependencies[@]}"; do
echo -ne "${LBlue}[${BBlue}*${LBlue}] ${BGray}Herramienta $program...${Color_Off}"
command -v $program > /dev/null 2>&1
if [ "$(echo $?)" == "0" ]; then
echo -e "${LBlue}($BGreen✔${LBlue})${Color_Off}"
else
echo -e "${LBlue}(${BRed}✘${LBlue})${Color_Off}"
echo -en "${LBlue}[${BYellow}!${LBlue}] ${BYellow}Instalando herramienta ${BGreen}$program...${Color_Off}"
apt-get install $program -y > /dev/null 2>&1
if [ "$(echo $?)" == "0" ]; then
echo -e "${LBlue}($BGreen✔${LBlue})${Color_Off}"
else
echo -e "${LBlue}(${BRed}✘${LBlue})${Color_Off}"
tput cnorm; exit 0
fi
fi; sleep 1
done
if [ ! -d ~/.config/terminator ]; then
mkdir -p ~/.config/terminator 2>/dev/null
cp src/config ~/.config/terminator 2>/dev/null
else
cp src/config ~/.config/terminator 2>/dev/null
fi
echo -e "\n${LBlue}[${BYellow}!${LBlue}] ${BGreen}Ya puedes ejecutar la herramienta: ./wifiAttack.sh${Color_Off}\n"
tput cnorm; exit 0
}
function stopped(){
if [ -f .interface.txt ]; then
ifconfig $(cat .interface.txt) down
macchanger -p $(cat .interface.txt) > /dev/null 2>&1
ifconfig $(cat .interface.txt) up
airmon-ng stop $(cat .interface.txt) > /dev/null 2>&1 && service network-manager restart > /dev/null 2>&1
rm .interface.txt .output.txt .attack.txt PKMID* > /dev/null 2>&1
tput cnorm
else
tput cnorm
fi
}
if [ "$(id -u)" == "0" ]; then
tput civis
arg=""
for arg; do
delim=""
case $arg in
--help) args="${args}-h";;
--install) args="${args}-i";;
--update) args="${args}-u";;
--*) args="${args}*";;
*) [[ "${arg:0:1}" == "-" ]] || delim="\""
args="${args}${delim}${arg}${delim} ";;
esac
done
eval set -- $args
while getopts "iuh" opt; do
case $opt in
i) install;;
u) update;;
h) helpPanel;;
*) helpPanel;;
esac
done
echo -e "\n${LBlue}[${BYellow}!${LBlue}] ${BGreen}Iniciando wifiAttack...${Color_Off}"
sleep 2
terminator -l wifiAttack
echo -e "\n${LBlue}[${BYellow}!${LBlue}] ${BRed}Deteniendo wifiAttack...${Color_Off}\n"
stopped
else
echo -e "\n${LBlue}[${BYellow}!${LBlue}] ${BRed}Ejecuta el script como r00t!${Color_Off}\n"
fi