Przeglądaj źródła

Add Swiftpair Spam, Evilportal sethtml, and LS command (#36)

* Add LED and EvilPortal

* Remove OTA and ESP

* Update version number

* Revert version number

* Formatting

* Add gps and wardrive commands

* GPS command behavior

* Add bt wardrive and sour apple

* Add swiftpair and sethtml

---------

Co-authored-by: 0xchocolate <109879152+0xchocolate@users.noreply.github.com>
Just Call Me Koko 2 lat temu
rodzic
commit
a5e79bb55f
2 zmienionych plików z 15 dodań i 8 usunięć
  1. 14 7
      scenes/wifi_marauder_scene_start.c
  2. 1 1
      wifi_marauder_app_i.h

+ 14 - 7
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
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)