mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-20 20:01:54 +03:00
c10cef3336
I think this solution looks better than two buttons for pmkid
146 lines
4.6 KiB
C
146 lines
4.6 KiB
C
//** Includes sniffbt and sniffskim for compatible ESP32-WROOM hardware.
|
|
// wifi_marauder_scene_start.c also changed **//
|
|
#pragma once
|
|
|
|
#include "wifi_marauder_app.h"
|
|
#include "scenes/wifi_marauder_scene.h"
|
|
#include "wifi_marauder_custom_event.h"
|
|
#include "wifi_marauder_uart.h"
|
|
#include "file/sequential_file.h"
|
|
#include "script/wifi_marauder_script.h"
|
|
#include "script/wifi_marauder_script_worker.h"
|
|
#include "script/wifi_marauder_script_executor.h"
|
|
#include "script/menu/wifi_marauder_script_stage_menu.h"
|
|
|
|
#include <gui/gui.h>
|
|
#include <gui/view_dispatcher.h>
|
|
#include <gui/scene_manager.h>
|
|
#include <gui/modules/text_box.h>
|
|
#include <gui/modules/submenu.h>
|
|
#include <gui/modules/variable_item_list.h>
|
|
#include <gui/modules/widget.h>
|
|
#include "wifi_marauder_text_input.h"
|
|
|
|
#include <ESP32_WiFi_Marauder_icons.h>
|
|
#include <storage/storage.h>
|
|
#include <lib/toolbox/path.h>
|
|
#include <dialogs/dialogs.h>
|
|
|
|
#define NUM_MENU_ITEMS (18)
|
|
|
|
#define WIFI_MARAUDER_TEXT_BOX_STORE_SIZE (4096)
|
|
#define WIFI_MARAUDER_TEXT_INPUT_STORE_SIZE (512)
|
|
|
|
#define MARAUDER_APP_FOLDER_USER "apps_data/marauder"
|
|
#define MARAUDER_APP_FOLDER EXT_PATH(MARAUDER_APP_FOLDER_USER)
|
|
#define MARAUDER_APP_FOLDER_PCAPS MARAUDER_APP_FOLDER "/pcaps"
|
|
#define MARAUDER_APP_FOLDER_LOGS MARAUDER_APP_FOLDER "/logs"
|
|
#define MARAUDER_APP_FOLDER_USER_PCAPS MARAUDER_APP_FOLDER_USER "/pcaps"
|
|
#define MARAUDER_APP_FOLDER_USER_LOGS MARAUDER_APP_FOLDER_USER "/logs"
|
|
#define MARAUDER_APP_FOLDER_SCRIPTS MARAUDER_APP_FOLDER "/scripts"
|
|
#define MARAUDER_APP_SCRIPT_PATH(file_name) MARAUDER_APP_FOLDER_SCRIPTS "/" file_name ".json"
|
|
#define SAVE_PCAP_SETTING_FILEPATH MARAUDER_APP_FOLDER "/save_pcaps_here.setting"
|
|
#define SAVE_LOGS_SETTING_FILEPATH MARAUDER_APP_FOLDER "/save_logs_here.setting"
|
|
|
|
typedef enum WifiMarauderUserInputType {
|
|
WifiMarauderUserInputTypeString,
|
|
WifiMarauderUserInputTypeNumber,
|
|
WifiMarauderUserInputTypeFileName
|
|
} WifiMarauderUserInputType;
|
|
|
|
struct WifiMarauderApp {
|
|
Gui* gui;
|
|
ViewDispatcher* view_dispatcher;
|
|
SceneManager* scene_manager;
|
|
|
|
char text_input_store[WIFI_MARAUDER_TEXT_INPUT_STORE_SIZE + 1];
|
|
FuriString* text_box_store;
|
|
size_t text_box_store_strlen;
|
|
TextBox* text_box;
|
|
WIFI_TextInput* text_input;
|
|
Storage* storage;
|
|
File* capture_file;
|
|
File* log_file;
|
|
char log_file_path[100];
|
|
File* save_pcap_setting_file;
|
|
File* save_logs_setting_file;
|
|
bool need_to_prompt_settings_init;
|
|
int which_prompt;
|
|
bool ok_to_save_pcaps;
|
|
bool ok_to_save_logs;
|
|
bool has_saved_logs_this_session;
|
|
DialogsApp* dialogs;
|
|
|
|
VariableItemList* var_item_list;
|
|
Widget* widget;
|
|
Submenu* submenu;
|
|
int open_log_file_page;
|
|
int open_log_file_num_pages;
|
|
|
|
WifiMarauderUart* uart;
|
|
WifiMarauderUart* lp_uart;
|
|
int selected_menu_index;
|
|
int selected_option_index[NUM_MENU_ITEMS];
|
|
const char* selected_tx_string;
|
|
bool is_command;
|
|
bool is_custom_tx_string;
|
|
bool focus_console_start;
|
|
bool show_stopscan_tip;
|
|
bool is_writing_pcap;
|
|
bool is_writing_log;
|
|
|
|
// User input
|
|
WifiMarauderUserInputType user_input_type;
|
|
char** user_input_string_reference;
|
|
int* user_input_number_reference;
|
|
char* user_input_file_dir;
|
|
char* user_input_file_extension;
|
|
|
|
// Automation script
|
|
WifiMarauderScript* script;
|
|
WifiMarauderScriptWorker* script_worker;
|
|
FuriString** script_list;
|
|
int script_list_count;
|
|
WifiMarauderScriptStage* script_edit_selected_stage;
|
|
WifiMarauderScriptStageMenu* script_stage_menu;
|
|
WifiMarauderScriptStageListItem* script_stage_edit_first_item;
|
|
char*** script_stage_edit_strings_reference;
|
|
int* script_stage_edit_string_count_reference;
|
|
int** script_stage_edit_numbers_reference;
|
|
int* script_stage_edit_number_count_reference;
|
|
|
|
// For input source and destination MAC in targeted deauth attack
|
|
int special_case_input_step;
|
|
char special_case_input_src_addr[20];
|
|
char special_case_input_dst_addr[20];
|
|
};
|
|
|
|
// Supported commands:
|
|
// https://github.com/justcallmekoko/ESP32Marauder/wiki/cli
|
|
// Scan
|
|
// -> If list is empty, then start a new scanap. (Tap any button to stop.)
|
|
// -> If there's a list, provide option to rescan and dump list of targets to select.
|
|
// -> Press BACK to go back to top-level.
|
|
// Attack
|
|
// -> Beacon
|
|
// -> Deauth
|
|
// -> Probe
|
|
// -> Rickroll
|
|
// Sniff
|
|
// -> Beacon
|
|
// -> Deauth
|
|
// -> ESP
|
|
// -> PMKID
|
|
// -> Pwnagotchi
|
|
// Channel
|
|
// Update
|
|
// Reboot
|
|
|
|
typedef enum {
|
|
WifiMarauderAppViewVarItemList,
|
|
WifiMarauderAppViewConsoleOutput,
|
|
WifiMarauderAppViewTextInput,
|
|
WifiMarauderAppViewWidget,
|
|
WifiMarauderAppViewSubmenu,
|
|
} WifiMarauderAppView;
|