I am not sure what is the problem, initially I suspected the low signal caused this, but that wasn't always the case, so instead looking what is the cause, I write small sh script to solve this problem, basically the script continues checking the Linux process for any airodump-ng, and when there is no airodump-ng in process, start another one, here is the simple script to accommodate this issue :
#!/bin/sh
i=1
while [ $i -le 100000 ]
do
echo "$i"
[ `ps -ax | grep airodump-ng | wc -l` -lt 1 ] && ./airodump-ng -c 11 --bssid 00:1a:70:82:7b:28 wlan0 -w output1 &
i=`expr $i + 1`
sleep 3
done
you can change that 100000 value, or make it loop forever, and change that option "-w output1" with any value with specific path, like /var/temp/output1
happy cracking.
No comments:
Post a Comment