Enable Bad Msg on GUI

This commit is contained in:
Just Call Me Koko
2025-07-28 14:30:30 -04:00
parent 9722cce0ba
commit 6596b41029
3 changed files with 6 additions and 6 deletions

View File

@@ -880,7 +880,7 @@ void CommandLine::runCommand(String input) {
Serial.println("Starting Bad Msg attack against all stations. Stop with " + (String)STOPSCAN_CMD);
#ifdef HAS_SCREEN
display_obj.clearScreen();
menu_functions_obj.drawStatusBar();
menu_function_obj.drawStatusBar();
#endif
wifi_scan_obj.StartScan(WIFI_ATTACK_BAD_MSG, TFT_RED);
}
@@ -889,7 +889,7 @@ void CommandLine::runCommand(String input) {
Serial.println("Starting targeted Bad Msg attack. Stop with " + (String)STOPSCAN_CMD);
#ifdef HAS_SCREEN
display_obj.clearScreen();
menu_functions_obj.drawStatusBar();
menu_function_obj.drawStatusBar();
#endif
wifi_scan_obj.StartScan(WIFI_ATTACK_BAD_MSG_TARGETED, TFT_YELLOW);
}