Преглед изворни кода

upd wifi marauder

https://github.com/justcallmekoko/flipperzero-wifi-marauder/tree/feature_wifi_marauder_app

PR in original repo by justcallmekoko
MX пре 2 година
родитељ
комит
464f20f83a

+ 1 - 1
ReadMe.md

@@ -13,7 +13,7 @@ Apps contains changes needed to compile them on latest firmware, fixes has been
 
 The Flipper and its community wouldn't be as rich as it is without your contributions and support. Thank you for all you have done.
 
-### Apps checked & updated at `17 Oct 23:38 GMT +3`
+### Apps checked & updated at `18 Oct 01:12 GMT +3`
 
 
 # Default pack

+ 1 - 1
base_pack/wifi_marauder_companion/application.fam

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

+ 14 - 7
base_pack/wifi_marauder_companion/scenes/wifi_marauder_scene_start.c

@@ -62,9 +62,9 @@ const WifiMarauderItem items[NUM_MENU_ITEMS] = {
      FOCUS_CONSOLE_END,
      NO_TIP},
     {"Attack",
-     {"deauth", "probe", "rickroll", "sour apple"},
-     4,
-     {"attack -t deauth", "attack -t probe", "attack -t rickroll", "sourapple"},
+     {"deauth", "probe", "rickroll", "sour apple", "swiftpair spam"},
+     5,
+     {"attack -t deauth", "attack -t probe", "attack -t rickroll", "sourapple", "swiftpair"},
      NO_ARGS,
      FOCUS_CONSOLE_END,
      SHOW_STOPSCAN_TIP},
@@ -76,10 +76,10 @@ const WifiMarauderItem items[NUM_MENU_ITEMS] = {
      FOCUS_CONSOLE_END, 
      SHOW_STOPSCAN_TIP},
     {"Evil Portal",
-     {"start"},
-     1,
-     {"evilportal -c start"},
-     NO_ARGS,
+     {"start", "set html"},
+     2,
+     {"evilportal -c start", "evilportal -c sethtml"},
+     TOGGLE_ARGS,
      FOCUS_CONSOLE_END,
      SHOW_STOPSCAN_TIP},
     {"Targeted Deauth",
@@ -151,6 +151,13 @@ const WifiMarauderItem items[NUM_MENU_ITEMS] = {
      TOGGLE_ARGS,
      FOCUS_CONSOLE_START,
      NO_TIP},
+    {"List SD",
+     {""},
+     1,
+     {"ls /"},
+     INPUT_ARGS,
+     FOCUS_CONSOLE_END,
+     NO_TIP},
     {"Update", {"sd"}, 1, {"update -s"}, NO_ARGS, FOCUS_CONSOLE_END, NO_TIP},
     {"Reboot", {""}, 1, {"reboot"}, NO_ARGS, FOCUS_CONSOLE_END, NO_TIP},
     {"Help", {""}, 1, {"help"}, NO_ARGS, FOCUS_CONSOLE_START, SHOW_STOPSCAN_TIP},

+ 1 - 1
base_pack/wifi_marauder_companion/wifi_marauder_app.h

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

+ 1 - 1
base_pack/wifi_marauder_companion/wifi_marauder_app_i.h

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