fix(security): set default AP password for setup mode

Device no longer boots as open WiFi hotspot. Default AP password
set to "zacus-setup-42" (overridable via APP_WIFI.json config).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
electron-rare
2026-03-11 04:11:32 +01:00
parent 97d531cf26
commit 82cc07489b
@@ -13,7 +13,7 @@ struct RuntimeNetworkConfig {
char local_ssid[33] = {0};
char local_password[65] = {0};
char ap_default_ssid[33] = "Freenove-Setup";
char ap_default_password[65] = {0};
char ap_default_password[65] = "zacus-setup-42";
bool force_ap_if_not_local = false;
bool pause_local_retry_when_ap_client = false;
uint32_t local_retry_ms = kDefaultLocalRetryMs;