Browse Source

marauder upd

MX 2 năm trước cách đây
mục cha
commit
ae2e1bb1be
4 tập tin đã thay đổi với 21 bổ sung6 xóa
  1. 1 1
      application.fam
  2. 9 0
      docs/changelog.md
  3. 10 4
      scenes/wifi_marauder_scene_start.c
  4. 1 1
      wifi_marauder_app.h

+ 1 - 1
application.fam

@@ -1,7 +1,7 @@
 App(
     appid="esp32_wifi_marauder",
     name="[ESP32] WiFi Marauder",
-    fap_version=(6,2),
+    fap_version=(6,3),
     apptype=FlipperAppType.EXTERNAL,
     entry_point="wifi_marauder_app",
     requires=["gui"],

+ 9 - 0
docs/changelog.md

@@ -1,3 +1,12 @@
+## v0.6.3
+
+BT wardriving and Sour Apple! Requires a board with BT support. Thanks to @justcallmekoko for adding the new commands!
+
+Make sure you flash the latest release of Marauder FW to your wifi board: https://github.com/justcallmekoko/ESP32Marauder/releases/tag/v0.13.0
+
+Note: if you're flashing directly from your flipper using the ESP Flasher app, grab the bin that corresponds to your hardware and only reflash the Firmware partition. (If you have dual boot set up, then choose the slot where you want to install it. Otherwise, reflash FirmwareA only.)
+
+
 ## v0.6.2
 
 Happy wardriving! Thanks to @justcallmekoko for adding the gps and wardrive commands!

+ 10 - 4
scenes/wifi_marauder_scene_start.c

@@ -62,13 +62,19 @@ const WifiMarauderItem items[NUM_MENU_ITEMS] = {
      FOCUS_CONSOLE_END,
      NO_TIP},
     {"Attack",
-     {"deauth", "probe", "rickroll"},
-     3,
-     {"attack -t deauth", "attack -t probe", "attack -t rickroll"},
+     {"deauth", "probe", "rickroll", "sour apple"},
+     4,
+     {"attack -t deauth", "attack -t probe", "attack -t rickroll", "sourapple"},
      NO_ARGS,
      FOCUS_CONSOLE_END,
      SHOW_STOPSCAN_TIP},
-    {"Wardrive", {""}, 1, {"wardrive"}, NO_ARGS, FOCUS_CONSOLE_END, SHOW_STOPSCAN_TIP},
+    {"Wardrive", 
+     {"ap", "station", "bt", "bt cont"}, 
+     4, 
+     {"wardrive", "wardrive -s", "btwardrive", "btwardrive -c"}, 
+     NO_ARGS, 
+     FOCUS_CONSOLE_END, 
+     SHOW_STOPSCAN_TIP},
     {"Evil Portal",
      {"start"},
      1,

+ 1 - 1
wifi_marauder_app.h

@@ -4,7 +4,7 @@
 extern "C" {
 #endif
 
-#define WIFI_MARAUDER_APP_VERSION "v0.6.2"
+#define WIFI_MARAUDER_APP_VERSION "v0.6.3"
 
 typedef struct WifiMarauderApp WifiMarauderApp;