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
+6 -1
View File
@@ -1 +1,6 @@
sudo mount /dev/`echo $1`1 /mnt/MARAUDLABEL
lsblk
echo -e "\nSelect A Disk (sda1, sdb1, etc)"
read disk
sudo mount /dev/$disk /mnt/MARAUDLABEL
echo -e "\n/mnt/MARAUDLABEL\n"
ls -lah /mnt/MARAUDLABEL
+3 -2
View File
@@ -1,7 +1,7 @@
#!/bin/bash
mountpoint=/mnt/MARAUDLABEL/
gb_to_zero=4
# full_wipe=True
gb_to_zero=1
full_wipe=True
copy_files=True
echo "WILL WIPE DISK USE WITH CARE"
@@ -11,6 +11,7 @@ lsblk
echo -e "\nEnter disk (e.x. sda or sdb - BE CAREFUL)"
read disk
block="/dev/${disk}"
if [ -z $full_wipe ]; then
echo -e "\nZeroing ${gb_to_zero}GB on Disk $block"
sudo dd if=/dev/zero of=$block status=progress bs=1M count="${gb_to_zero}K" conv=fdatasync