| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262 |
- #include "../wifi_marauder_app_i.h"
- #include "wifi_marauder_script_executor.h"
- void _wifi_marauder_script_delay(WifiMarauderScriptWorker* worker, uint32_t delay_secs) {
- for (uint32_t i=0; i<delay_secs && worker->is_running; i++)
- furi_delay_ms(1000);
- }
- void _send_stop() {
- const char stop_command[] = "stopscan\n";
- wifi_marauder_uart_tx((uint8_t*)(stop_command), strlen(stop_command));
- }
- void _send_line_break() {
- wifi_marauder_uart_tx((uint8_t*)("\n"), 1);
- }
- void _send_channel_select(int channel) {
- char command[30];
- wifi_marauder_uart_tx((uint8_t*)("\n"), 1);
- snprintf(command, sizeof(command), "channel -s %d\n", channel);
- wifi_marauder_uart_tx((uint8_t*)(command), strlen(command));
- }
- void _wifi_marauder_script_execute_scan(WifiMarauderScriptStageScan* stage, WifiMarauderScriptWorker* worker) {
- char command[15];
- // Set channel
- if (stage->channel > 0) {
- _send_channel_select(stage->channel);
- }
- // Start scan
- if (stage->type == WifiMarauderScriptScanTypeAp) {
- snprintf(command, sizeof(command), "scanap\n");
- } else {
- snprintf(command, sizeof(command), "scansta\n");
- }
- wifi_marauder_uart_tx((uint8_t*)(command), strlen(command));
- _wifi_marauder_script_delay(worker, stage->timeout);
- _send_stop();
- }
- void _wifi_marauder_script_execute_select(WifiMarauderScriptStageSelect* stage) {
- const char* select_type = NULL;
- switch (stage->type) {
- case WifiMarauderScriptSelectTypeAp:
- select_type = "-a";
- break;
- case WifiMarauderScriptSelectTypeStation:
- select_type = "-c";
- break;
- case WifiMarauderScriptSelectTypeSsid:
- select_type = "-s";
- break;
- default:
- return; // invalid stage
- }
- char command[256];
- size_t command_length = 0;
- if (stage->indexes != NULL && stage->index_count > 0) {
- command_length = snprintf(command, sizeof(command), "select %s ", select_type);
- for (int i = 0; i < stage->index_count; i++) {
- int index = stage->indexes[i];
- command_length += snprintf(command + command_length, sizeof(command) - command_length, "%d, ", index);
- }
- // Remove the trailing comma and space
- command_length -= 2;
- command[command_length] = '\n';
- command_length++;
- } else if (stage->filter == NULL || strcmp(stage->filter, "all") == 0) {
- command_length = snprintf(command, sizeof(command), "select %s all\n", select_type);
- } else {
- command_length = snprintf(command, sizeof(command), "select %s -f \"%s\"\n", select_type, stage->filter);
- }
- wifi_marauder_uart_tx((uint8_t*)command, command_length);
- }
- void _wifi_marauder_script_execute_deauth(WifiMarauderScriptStageDeauth* stage, WifiMarauderScriptWorker* worker) {
- const char attack_command[] = "attack -t deauth\n";
- wifi_marauder_uart_tx((uint8_t*)(attack_command), strlen(attack_command));
- _wifi_marauder_script_delay(worker, stage->timeout);
- _send_stop();
- }
- void _wifi_marauder_script_execute_probe(WifiMarauderScriptStageProbe* stage, WifiMarauderScriptWorker* worker) {
- const char attack_command[] = "attack -t probe\n";
- wifi_marauder_uart_tx((uint8_t*)(attack_command), strlen(attack_command));
- _wifi_marauder_script_delay(worker, stage->timeout);
- _send_stop();
- }
- void _wifi_marauder_script_execute_sniff_raw(WifiMarauderScriptStageSniffRaw* stage, WifiMarauderScriptWorker* worker) {
- const char sniff_command[] = "sniffraw\n";
- wifi_marauder_uart_tx((uint8_t*)sniff_command, strlen(sniff_command));
- _wifi_marauder_script_delay(worker, stage->timeout);
- _send_stop();
- }
- void _wifi_marauder_script_execute_sniff_beacon(WifiMarauderScriptStageSniffBeacon* stage, WifiMarauderScriptWorker* worker) {
- const char sniff_command[] = "sniffbeacon\n";
- wifi_marauder_uart_tx((uint8_t*)sniff_command, strlen(sniff_command));
- _wifi_marauder_script_delay(worker, stage->timeout);
- _send_stop();
- }
- void _wifi_marauder_script_execute_sniff_deauth(WifiMarauderScriptStageSniffDeauth* stage, WifiMarauderScriptWorker* worker) {
- const char sniff_command[] = "sniffdeauth\n";
- wifi_marauder_uart_tx((uint8_t*)sniff_command, strlen(sniff_command));
- _wifi_marauder_script_delay(worker, stage->timeout);
- _send_stop();
- }
- void _wifi_marauder_script_execute_sniff_esp(WifiMarauderScriptStageSniffEsp* stage, WifiMarauderScriptWorker* worker) {
- const char sniff_command[] = "sniffesp\n";
- wifi_marauder_uart_tx((uint8_t*)sniff_command, strlen(sniff_command));
- _wifi_marauder_script_delay(worker, stage->timeout);
- _send_stop();
- }
- void _wifi_marauder_script_execute_sniff_pmkid(WifiMarauderScriptStageSniffPmkid* stage, WifiMarauderScriptWorker* worker) {
- char attack_command[50] = "sniffpmkid";
- int len = strlen(attack_command);
-
- if (stage->channel > 0) {
- len += snprintf(attack_command + len, sizeof(attack_command) - len, " -c %d", stage->channel);
- }
- if (stage->force_deauth) {
- len += snprintf(attack_command + len, sizeof(attack_command) - len, " -d");
- }
- len += snprintf(attack_command + len, sizeof(attack_command) - len, "\n");
- wifi_marauder_uart_tx((uint8_t*)attack_command, len);
- _wifi_marauder_script_delay(worker, stage->timeout);
- _send_stop();
- }
- void _wifi_marauder_script_execute_sniff_pwn(WifiMarauderScriptStageSniffPwn* stage, WifiMarauderScriptWorker* worker) {
- const char sniff_command[] = "sniffpwn\n";
- wifi_marauder_uart_tx((uint8_t*)sniff_command, strlen(sniff_command));
- _wifi_marauder_script_delay(worker, stage->timeout);
- _send_stop();
- }
- void _wifi_marauder_script_execute_beacon_list(WifiMarauderScriptStageBeaconList* stage, WifiMarauderScriptWorker* worker) {
- const char clearlist_command[] = "clearlist -s\n";
- wifi_marauder_uart_tx((uint8_t*)(clearlist_command), strlen(clearlist_command));
- char command[100];
- char *ssid;
- for (int i = 0; i < stage->ssid_count; i++) {
- ssid = stage->ssids[i];
- snprintf(command, sizeof(command), "ssid -a -n \"%s\"", ssid);
- wifi_marauder_uart_tx((uint8_t*)(command), strlen(command));
- _send_line_break();
- }
- if (stage->random_ssids > 0) {
- char add_random_command[50];
- snprintf(add_random_command, sizeof(add_random_command), "ssid -a -r -g %d\n", stage->random_ssids);
- wifi_marauder_uart_tx((uint8_t*)add_random_command, strlen(add_random_command));
- }
- const char attack_command[] = "attack -t beacon -l\n";
- wifi_marauder_uart_tx((uint8_t*)(attack_command), strlen(attack_command));
- _wifi_marauder_script_delay(worker, stage->timeout);
- _send_stop();
- }
- void _wifi_marauder_script_execute_beacon_ap(WifiMarauderScriptStageBeaconAp* stage, WifiMarauderScriptWorker* worker) {
- const char command[] = "attack -t beacon -a\n";
- wifi_marauder_uart_tx((uint8_t*)command, strlen(command));
- _wifi_marauder_script_delay(worker, stage->timeout);
- _send_stop();
- }
- void _wifi_marauder_script_execute_exec(WifiMarauderScriptStageExec* stage) {
- if (stage->command != NULL) {
- wifi_marauder_uart_tx((uint8_t*)stage->command, strlen(stage->command));
- }
- }
- void _wifi_marauder_script_execute_delay(WifiMarauderScriptStageDelay* stage, WifiMarauderScriptWorker* worker) {
- _wifi_marauder_script_delay(worker, stage->timeout);
- }
- void wifi_marauder_script_execute_start(void *context) {
- furi_assert(context);
- WifiMarauderScriptWorker* worker = context;
- WifiMarauderScript* script = worker->script;
- char command[100];
- // Enables or disables the LED according to script settings
- if (script->enable_led != WifiMarauderScriptBooleanUndefined) {
- snprintf(command, sizeof(command), "settings -s EnableLED %s", script->enable_led ? "enable" : "disable");
- wifi_marauder_uart_tx((uint8_t*)command, strlen(command));
- _send_line_break();
- }
- // Enables or disables PCAP saving according to script settings
- if (script->save_pcap != WifiMarauderScriptBooleanUndefined) {
- snprintf(command, sizeof(command), "settings -s SavePCAP %s", script->save_pcap ? "enable" : "disable");
- wifi_marauder_uart_tx((uint8_t*)command, strlen(command));
- _send_line_break();
- }
- }
- void wifi_marauder_script_execute_stage(WifiMarauderScriptStage* stage, void *context) {
- furi_assert(context);
- WifiMarauderScriptWorker* worker = context;
- void *stage_data = stage->stage;
- switch (stage->type) {
- case WifiMarauderScriptStageTypeScan:
- _wifi_marauder_script_execute_scan((WifiMarauderScriptStageScan*)stage_data, worker);
- break;
- case WifiMarauderScriptStageTypeSelect:
- _wifi_marauder_script_execute_select((WifiMarauderScriptStageSelect*)stage_data);
- break;
- case WifiMarauderScriptStageTypeDeauth:
- _wifi_marauder_script_execute_deauth((WifiMarauderScriptStageDeauth*)stage_data, worker);
- break;
- case WifiMarauderScriptStageTypeProbe:
- _wifi_marauder_script_execute_probe((WifiMarauderScriptStageProbe*)stage_data, worker);
- break;
- case WifiMarauderScriptStageTypeSniffRaw:
- _wifi_marauder_script_execute_sniff_raw((WifiMarauderScriptStageSniffRaw*)stage_data, worker);
- break;
- case WifiMarauderScriptStageTypeSniffBeacon:
- _wifi_marauder_script_execute_sniff_beacon((WifiMarauderScriptStageSniffBeacon*)stage_data, worker);
- break;
- case WifiMarauderScriptStageTypeSniffDeauth:
- _wifi_marauder_script_execute_sniff_deauth((WifiMarauderScriptStageSniffDeauth*)stage_data, worker);
- break;
- case WifiMarauderScriptStageTypeSniffEsp:
- _wifi_marauder_script_execute_sniff_esp((WifiMarauderScriptStageSniffEsp*)stage_data, worker);
- break;
- case WifiMarauderScriptStageTypeSniffPmkid:
- _wifi_marauder_script_execute_sniff_pmkid((WifiMarauderScriptStageSniffPmkid*)stage_data, worker);
- break;
- case WifiMarauderScriptStageTypeSniffPwn:
- _wifi_marauder_script_execute_sniff_pwn((WifiMarauderScriptStageSniffPwn*)stage_data, worker);
- break;
- case WifiMarauderScriptStageTypeBeaconList:
- _wifi_marauder_script_execute_beacon_list((WifiMarauderScriptStageBeaconList*)stage_data, worker);
- break;
- case WifiMarauderScriptStageTypeBeaconAp:
- _wifi_marauder_script_execute_beacon_ap((WifiMarauderScriptStageBeaconAp*)stage_data, worker);
- break;
- case WifiMarauderScriptStageTypeExec:
- _wifi_marauder_script_execute_exec((WifiMarauderScriptStageExec*)stage_data);
- break;
- case WifiMarauderScriptStageTypeDelay:
- _wifi_marauder_script_execute_delay((WifiMarauderScriptStageDelay*)stage_data, worker);
- break;
- }
- }
|