| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255 |
- #include "../wifi_marauder_app_i.h"
- char* _wifi_marauder_get_prefix_from_cmd(const char* command) {
- int end = strcspn(command, " ");
- char* prefix = (char*)malloc(sizeof(char) * (end + 1));
- strncpy(prefix, command, end);
- prefix[end] = '\0';
- return prefix;
- }
- bool _wifi_marauder_is_saving_enabled(WifiMarauderApp* app) {
- // If it is a script that contains a sniff function
- if(app->script != NULL) {
- if(app->script->save_pcap == WifiMarauderScriptBooleanFalse) {
- return false;
- }
- if(app->script->save_pcap == WifiMarauderScriptBooleanUndefined) {
- if(!app->ok_to_save_pcaps) {
- return false;
- }
- }
- return wifi_marauder_script_has_stage(app->script, WifiMarauderScriptStageTypeSniffRaw) ||
- wifi_marauder_script_has_stage(
- app->script, WifiMarauderScriptStageTypeSniffBeacon) ||
- wifi_marauder_script_has_stage(
- app->script, WifiMarauderScriptStageTypeSniffDeauth) ||
- wifi_marauder_script_has_stage(app->script, WifiMarauderScriptStageTypeSniffEsp) ||
- wifi_marauder_script_has_stage(
- app->script, WifiMarauderScriptStageTypeSniffPmkid) ||
- wifi_marauder_script_has_stage(app->script, WifiMarauderScriptStageTypeSniffPwn);
- }
- if(!app->ok_to_save_pcaps) {
- return false;
- }
- // If it is a sniff/wardrive/btwardrive/evilportal function
- return app->is_command && app->selected_tx_string &&
- (strncmp("sniff", app->selected_tx_string, strlen("sniff")) == 0 ||
- strncmp("wardrive", app->selected_tx_string, strlen("wardrive")) == 0 ||
- strncmp("btwardrive", app->selected_tx_string, strlen("btwardrive")) == 0 ||
- strncmp("evilportal", app->selected_tx_string, strlen("evilportal")) == 0);
- }
- void wifi_marauder_console_output_handle_rx_data_cb(uint8_t* buf, size_t len, void* context) {
- furi_assert(context);
- WifiMarauderApp* app = context;
- if(app->is_writing_log) {
- app->has_saved_logs_this_session = true;
- storage_file_write(app->log_file, buf, len);
- }
- // If text box store gets too big, then truncate it
- app->text_box_store_strlen += len;
- if(app->text_box_store_strlen >= WIFI_MARAUDER_TEXT_BOX_STORE_SIZE - 1) {
- furi_string_right(app->text_box_store, app->text_box_store_strlen / 2);
- app->text_box_store_strlen = furi_string_size(app->text_box_store) + len;
- }
- // Null-terminate buf and append to text box store
- buf[len] = '\0';
- furi_string_cat_printf(app->text_box_store, "%s", buf);
- view_dispatcher_send_custom_event(app->view_dispatcher, WifiMarauderEventRefreshConsoleOutput);
- }
- void wifi_marauder_console_output_handle_rx_packets_cb(uint8_t* buf, size_t len, void* context) {
- furi_assert(context);
- WifiMarauderApp* app = context;
- if(app->is_writing_pcap) {
- storage_file_write(app->capture_file, buf, len);
- }
- }
- void wifi_marauder_scene_console_output_on_enter(void* context) {
- WifiMarauderApp* app = context;
- // Reset text box and set font
- TextBox* text_box = app->text_box;
- text_box_reset(text_box);
- text_box_set_font(text_box, TextBoxFontText);
- // Set focus on start or end
- if(app->focus_console_start) {
- text_box_set_focus(text_box, TextBoxFocusStart);
- } else {
- text_box_set_focus(text_box, TextBoxFocusEnd);
- }
- // Set command-related messages
- if(app->is_command) {
- furi_string_reset(app->text_box_store);
- app->text_box_store_strlen = 0;
- // Help message
- if(0 == strncmp("help", app->selected_tx_string, strlen("help"))) {
- const char* help_msg = "Marauder companion " WIFI_MARAUDER_APP_VERSION "\n";
- furi_string_cat_str(app->text_box_store, help_msg);
- app->text_box_store_strlen += strlen(help_msg);
- }
- // Stopscan message
- if(app->show_stopscan_tip) {
- const char* help_msg = "Press BACK to send stopscan\n";
- furi_string_cat_str(app->text_box_store, help_msg);
- app->text_box_store_strlen += strlen(help_msg);
- }
- }
- // Set starting text
- text_box_set_text(app->text_box, furi_string_get_cstr(app->text_box_store));
- // Set scene state and switch view
- scene_manager_set_scene_state(app->scene_manager, WifiMarauderSceneConsoleOutput, 0);
- view_dispatcher_switch_to_view(app->view_dispatcher, WifiMarauderAppViewConsoleOutput);
- // Register callbacks to receive data
- wifi_marauder_uart_set_handle_rx_data_cb(
- app->uart,
- wifi_marauder_console_output_handle_rx_data_cb); // setup callback for general log rx thread
- wifi_marauder_uart_set_handle_rx_pcap_cb(
- app->uart,
- wifi_marauder_console_output_handle_rx_packets_cb); // setup callback for packets rx thread
- // Get ready to send command
- if((app->is_command && app->selected_tx_string) || app->script) {
- char* prefix_buf = NULL;
- if(strlen(app->selected_tx_string) > 0) {
- prefix_buf = _wifi_marauder_get_prefix_from_cmd(app->selected_tx_string);
- }
- const char* prefix = prefix_buf ? prefix_buf : // Function name
- app->script->name; // Script name
- // Create files *before* sending command
- // (it takes time to iterate through the directory)
- if(app->ok_to_save_logs) {
- char* resolved_path = sequential_file_resolve_path(
- app->storage, MARAUDER_APP_FOLDER_LOGS, prefix, "log");
- if(resolved_path != NULL) {
- strcpy(app->log_file_path, resolved_path);
- free(resolved_path);
- if(storage_file_open(
- app->log_file, app->log_file_path, FSAM_WRITE, FSOM_CREATE_ALWAYS)) {
- app->is_writing_log = true;
- } else {
- dialog_message_show_storage_error(app->dialogs, "Cannot open log file");
- }
- } else {
- dialog_message_show_storage_error(app->dialogs, "Cannot resolve log path");
- }
- }
- // If it is a sniff/wardrive/btwardrive/evilportal function or script, open the capture file for recording
- if(_wifi_marauder_is_saving_enabled(app)) {
- const char* folder = NULL;
- const char* extension = NULL;
- if(app->script || // Scripts only support sniff functions, but selected_tx_string is empty
- strncmp("sniff", app->selected_tx_string, strlen("sniff")) == 0) {
- folder = MARAUDER_APP_FOLDER_PCAPS;
- extension = "pcap";
- } else {
- folder = MARAUDER_APP_FOLDER_DUMPS;
- extension = "txt";
- }
- if(sequential_file_open(app->storage, app->capture_file, folder, prefix, extension)) {
- app->is_writing_pcap = true;
- } else {
- dialog_message_show_storage_error(app->dialogs, "Cannot open capture file");
- }
- }
- bool send_html = false;
- uint8_t* the_html = NULL;
- size_t html_size = 0;
- if(app->selected_tx_string && strncmp(
- "evilportal -c sethtmlstr",
- app->selected_tx_string,
- strlen("evilportal -c sethtmlstr")) == 0) {
- send_html = wifi_marauder_ep_read_html_file(app, &the_html, &html_size);
- }
- // Send command with newline '\n'
- if(app->selected_tx_string) {
- if(app->script == NULL) {
- wifi_marauder_uart_tx(
- app->uart,
- (uint8_t*)(app->selected_tx_string),
- strlen(app->selected_tx_string));
- if(app->is_writing_pcap) {
- wifi_marauder_uart_tx(
- app->uart, (uint8_t*)(" -serial\n"), strlen(" -serial\n"));
- } else {
- wifi_marauder_uart_tx(app->uart, (uint8_t*)("\n"), 1);
- }
- }
- if(send_html && the_html) {
- wifi_marauder_uart_tx(app->uart, the_html, html_size);
- wifi_marauder_uart_tx(app->uart, (uint8_t*)("\n"), 1);
- free(the_html);
- send_html = false;
- }
- }
- // Run the script if the file with the script has been opened
- if(app->script != NULL) {
- app->script_worker = wifi_marauder_script_worker_alloc(app->uart);
- wifi_marauder_script_worker_start(app->script_worker, app->script);
- }
- if(prefix_buf) {
- free(prefix_buf);
- }
- }
- }
- bool wifi_marauder_scene_console_output_on_event(void* context, SceneManagerEvent event) {
- WifiMarauderApp* app = context;
- bool consumed = false;
- if(event.type == SceneManagerEventTypeCustom) {
- text_box_set_text(app->text_box, furi_string_get_cstr(app->text_box_store));
- consumed = true;
- } else if(event.type == SceneManagerEventTypeTick) {
- consumed = true;
- }
- return consumed;
- }
- void wifi_marauder_scene_console_output_on_exit(void* context) {
- WifiMarauderApp* app = context;
- // Automatically stop the scan when exiting view
- if(app->is_command) {
- wifi_marauder_uart_tx(app->uart, (uint8_t*)("stopscan\n"), strlen("stopscan\n"));
- furi_delay_ms(50);
- }
- // Unregister rx callback
- wifi_marauder_uart_set_handle_rx_data_cb(app->uart, NULL);
- wifi_marauder_uart_set_handle_rx_pcap_cb(app->uart, NULL);
- if(app->script_worker) {
- wifi_marauder_script_worker_free(app->script_worker);
- app->script_worker = NULL;
- }
- app->is_writing_pcap = false;
- if(app->capture_file && storage_file_is_open(app->capture_file)) {
- storage_file_close(app->capture_file);
- }
- app->is_writing_log = false;
- if(app->log_file && storage_file_is_open(app->log_file)) {
- storage_file_close(app->log_file);
- }
- }
|