Przeglądaj źródła

Merge wifi_marauder_companion from https://github.com/0xchocolate/flipperzero-wifi-marauder

# Conflicts:
#	wifi_marauder_companion/wifi_marauder_app_i.h
Willy-JL 1 rok temu
rodzic
commit
6786df1f29

+ 1 - 1
wifi_marauder_companion/application.fam

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

+ 19 - 8
wifi_marauder_companion/scenes/wifi_marauder_scene_start.c

@@ -20,7 +20,7 @@ typedef enum {
 #define SHOW_STOPSCAN_TIP (true)
 #define NO_TIP            (false)
 
-#define MAX_OPTIONS (9)
+#define MAX_OPTIONS (10)
 typedef struct {
     const char* item_string;
     const char* options_menu[MAX_OPTIONS];
@@ -49,9 +49,9 @@ const WifiMarauderItem items[NUM_MENU_ITEMS] = {
      FOCUS_CONSOLE_START,
      NO_TIP},
     {"List",
-     {"ap", "ssid", "station"},
-     3,
-     {"list -a", "list -s", "list -c"},
+     {"ap", "ssid", "station", "airtag"},
+     4,
+     {"list -a", "list -s", "list -c", "list -t"},
      NO_ARGS,
      FOCUS_CONSOLE_START,
      NO_TIP},
@@ -77,8 +77,9 @@ const WifiMarauderItem items[NUM_MENU_ITEMS] = {
       "swiftpair spam",
       "samsung spam",
       "google spam",
+      "flipper spam",
       "bt spam all"},
-     8,
+     9,
      {"attack -t deauth",
       "attack -t probe",
       "attack -t rickroll",
@@ -86,10 +87,18 @@ const WifiMarauderItem items[NUM_MENU_ITEMS] = {
       "blespam -t windows",
       "blespam -t samsung",
       "blespam -t google",
+      "blespam -t flipper",
       "blespam -t all"},
      NO_ARGS,
      FOCUS_CONSOLE_END,
      SHOW_STOPSCAN_TIP},
+    {"Spoof Airtag",
+     {""},
+     1,
+     {"spoofat -t"},
+     INPUT_ARGS,
+     FOCUS_CONSOLE_END,
+     NO_TIP},
     {"Wardrive",
      {"ap", "station", "bt", "bt cont"},
      4,
@@ -126,8 +135,8 @@ const WifiMarauderItem items[NUM_MENU_ITEMS] = {
      FOCUS_CONSOLE_END,
      SHOW_STOPSCAN_TIP},
     {"Sniff",
-     {"beacon", "deauth", "pmkid", "probe", "pwn", "raw", "bt", "skim"},
-     8,
+     {"beacon", "deauth", "pmkid", "probe", "pwn", "raw", "bt", "skim", "airtag", "flipper"},
+     10,
      {"sniffbeacon",
       "sniffdeauth",
       "sniffpmkid",
@@ -135,7 +144,9 @@ const WifiMarauderItem items[NUM_MENU_ITEMS] = {
       "sniffpwn",
       "sniffraw",
       "sniffbt",
-      "sniffskim"},
+      "sniffskim",
+      "sniffbt -t airtag",
+      "sniffbt -t flipper"},
      NO_ARGS,
      FOCUS_CONSOLE_END,
      SHOW_STOPSCAN_TIP},

+ 1 - 1
wifi_marauder_companion/wifi_marauder_app.h

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

+ 1 - 3
wifi_marauder_companion/wifi_marauder_app_i.h

@@ -27,9 +27,7 @@
 #include <lib/toolbox/path.h>
 #include <dialogs/dialogs.h>
 
-#include <assets_icons.h>
-
-#define NUM_MENU_ITEMS (24)
+#define NUM_MENU_ITEMS (25)
 
 #define WIFI_MARAUDER_TEXT_BOX_STORE_SIZE   (4096)
 #define WIFI_MARAUDER_TEXT_INPUT_STORE_SIZE (512)