Skip to content

Commit

Permalink
upd wifi marauder
Browse files Browse the repository at this point in the history
  • Loading branch information
xMasterX committed Oct 17, 2023
1 parent ae2e1bb commit 5cae0ac
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 10 deletions.
2 changes: 1 addition & 1 deletion application.fam
Original file line number Diff line number Diff line change
@@ -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"],
Expand Down
21 changes: 14 additions & 7 deletions scenes/wifi_marauder_scene_start.c
Original file line number Diff line number Diff line change
Expand Up @@ -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},
Expand All @@ -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",
Expand Down Expand Up @@ -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},
Expand Down
2 changes: 1 addition & 1 deletion wifi_marauder_app.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion wifi_marauder_app_i.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 5cae0ac

Please sign in to comment.