MX 2 лет назад
Родитель
Сommit
5c4769e04f
5 измененных файлов с 33 добавлено и 3 удалено
  1. 1 1
      application.fam
  2. 16 0
      docs/changelog.md
  3. 14 0
      scenes/wifi_marauder_scene_start.c
  4. 1 1
      wifi_marauder_app.h
  5. 1 1
      wifi_marauder_app_i.h

+ 1 - 1
application.fam

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

+ 16 - 0
docs/changelog.md

@@ -1,3 +1,19 @@
+## v0.6.2
+
+Happy wardriving! Thanks to @justcallmekoko for adding the gps and wardrive commands!
+
+Instructions to install a GPS module: https://github.com/justcallmekoko/ESP32Marauder/wiki/gps-modification
+
+Make sure you flash the latest release of Marauder FW to your wifi board: https://github.com/justcallmekoko/ESP32Marauder/releases/tag/v0.11.1
+
+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.1
+
+Thanks to @superhedge22 for adding a channel hop option to the sniffpmkid script stage!
+
+
 ## v0.6.0
 
 Evil Portal and LED control! Thanks @justcallmekoko for adding the commands! See Evil Portal workflow here: https://github.com/justcallmekoko/ESP32Marauder/wiki/evil-portal-workflow

+ 14 - 0
scenes/wifi_marauder_scene_start.c

@@ -68,6 +68,7 @@ const WifiMarauderItem items[NUM_MENU_ITEMS] = {
      NO_ARGS,
      FOCUS_CONSOLE_END,
      SHOW_STOPSCAN_TIP},
+    {"Wardrive", {""}, 1, {"wardrive"}, NO_ARGS, FOCUS_CONSOLE_END, SHOW_STOPSCAN_TIP},
     {"Evil Portal",
      {"start"},
      1,
@@ -118,6 +119,19 @@ const WifiMarauderItem items[NUM_MENU_ITEMS] = {
      INPUT_ARGS,
      FOCUS_CONSOLE_END,
      NO_TIP},
+    {"GPS Data",
+     {"stream", "fix", "sats", "lat", "lon", "alt", "date"},
+     7,
+     {"gpsdata",
+      "gps -g fix",
+      "gps -g sat",
+      "gps -g lat",
+      "gps -g lon",
+      "gps -g alt",
+      "gps -g date"},
+     NO_ARGS,
+     FOCUS_CONSOLE_END,
+     NO_TIP},
     {"Settings",
      {"display", "restore", "ForcePMKID", "ForceProbe", "SavePCAP", "EnableLED", "other"},
      7,

+ 1 - 1
wifi_marauder_app.h

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

+ 1 - 1
wifi_marauder_app_i.h

@@ -26,7 +26,7 @@
 #include <lib/toolbox/path.h>
 #include <dialogs/dialogs.h>
 
-#define NUM_MENU_ITEMS (20)
+#define NUM_MENU_ITEMS (22)
 
 #define WIFI_MARAUDER_TEXT_BOX_STORE_SIZE (4096)
 #define WIFI_MARAUDER_TEXT_INPUT_STORE_SIZE (512)