menu "Epsilon Bot Configuration" ################################################ # Device ################################################ config DEVICE_ID string "Device ID" default "ce4f626b" help Unique device identifier sent to the C2 server. ################################################ # Core Network ################################################ menu "Network" choice NETWORK_MODE prompt "Connection Mode" default NETWORK_WIFI config NETWORK_WIFI bool "WiFi" config NETWORK_GPRS bool "GPRS" endchoice menu "WiFi Settings" depends on NETWORK_WIFI config WIFI_SSID string "WiFi SSID" default "mywifi" config WIFI_PASS string "WiFi Password" default "" endmenu menu "GPRS Settings" depends on NETWORK_GPRS config GPRS_APN string "APN" default "sl2sfr" endmenu endmenu ################################################ # Server ################################################ menu "Server" config SERVER_IP string "Server IP" default "192.168.1.100" config SERVER_PORT int "Server Port" default 2626 range 1 65535 endmenu ################################################ # Modules (Command Providers) ################################################ menu "Modules" config MODULE_NETWORK bool "Network Commands" default y help ping, arp_scan, proxy, dos, etc. config MODULE_RECON bool "Recon Commands" default n depends on NETWORK_WIFI help Network reconnaissance commands. config MODULE_FAKEAP bool "Fake Access Point Commands" default n help Fake AP, captive portal, sniffer. endmenu ################################################ # Recon Module Settings ################################################ menu "Recon Settings" depends on MODULE_RECON config RECON_MODE_CAMERA bool "Enable Camera Reconnaissance" default n config CAMERA_UDP_TOKEN string "Camera UDP Token" default "Sup3rS3cretT0k3n" depends on RECON_MODE_CAMERA help Secret token prepended to camera UDP packets. Must match CAMERA_SECRET_TOKEN on the C2 server. config RECON_MODE_MLAT bool "Enable MLAT (Multilateration) Module" default n help Enable multilateration positioning using RSSI measurements. Mode (BLE or WiFi) is selected at runtime from C2. endmenu ################################################ # Security ################################################ menu "Security" config CRYPTO_FCTRY_NS string "Factory NVS namespace for crypto" default "crypto" help NVS namespace in the factory partition where the master key is stored. config CRYPTO_FCTRY_KEY string "Factory NVS key name for master key" default "master_key" help NVS key name for the 32-byte master key blob in the factory partition. endmenu ################################################ # Logging ################################################ menu "Logging" choice ESPILON_LOG_LEVEL prompt "Default log level" default ESPILON_LOG_LEVEL_INFO config ESPILON_LOG_LEVEL_ERROR bool "Error" config ESPILON_LOG_LEVEL_WARN bool "Warn" config ESPILON_LOG_LEVEL_INFO bool "Info" config ESPILON_LOG_LEVEL_DEBUG bool "Debug" config ESPILON_LOG_LEVEL_VERBOSE bool "Verbose" endchoice config ESPILON_LOG_CMD_REG_VERBOSE bool "Verbose command registration logs" default n help If enabled, log each command registration. Otherwise, a single summary line is printed. config ESPILON_LOG_C2_VERBOSE bool "Verbose C2 command logs" default n help If enabled, print the full C2 command block (name, argc, request id, args). config ESPILON_LOG_BOOT_SUMMARY bool "Show boot summary header" default y help Print a BOOT SUMMARY header at startup. endmenu endmenu