Files
DELILAHS_FIST/wifi-esp-freertos/main/Kconfig.projbuild
T
2026-05-26 22:16:15 -06:00

103 lines
3.0 KiB
Plaintext

menu "WIFI Configuration"
config WIFI_SSID
string "WiFi SSID"
default "myssid"
help
SSID (network name) for the example to connect to.
config WIFI_PSK
string "WiFi Password"
default "mypassword"
help
WiFi password (WPA or WPA2) for the example to use.
config HOSTNAME
string "Hostname"
default "PrincessPiESP32"
help
Hostname lol
config DEST_IP_ADDR
string "Destination IPv4 Address"
default "10.0.0.255"
help
dst addr, ipv4, string, lfgggg
config DEST_PORT
int "Destination Port"
default 4444
help
dst port, integar, 0-65535
choice ESP_WIFI_SAE_MODE
prompt "WPA3 SAE mode selection"
default ESP_WPA3_SAE_PWE_BOTH
help
Select mode for SAE as Hunt and Peck, H2E or both.
config ESP_WPA3_SAE_PWE_HUNT_AND_PECK
bool "HUNT AND PECK"
config ESP_WPA3_SAE_PWE_HASH_TO_ELEMENT
bool "H2E"
config ESP_WPA3_SAE_PWE_BOTH
bool "BOTH"
endchoice
config ESP_WIFI_PW_ID
string "PASSWORD IDENTIFIER"
depends on ESP_WPA3_SAE_PWE_HASH_TO_ELEMENT|| ESP_WPA3_SAE_PWE_BOTH
default ""
help
password identifier for SAE H2E
config ESP_MAXIMUM_RETRY
int "Maximum retry"
default 5
help
Set the Maximum retry to avoid station reconnecting to the AP unlimited when the AP is really inexistent.
choice ESP_WIFI_SCAN_AUTH_MODE_THRESHOLD
prompt "WiFi Scan auth mode threshold"
default ESP_WIFI_AUTH_WPA2_PSK
help
The weakest authmode to accept in the scan mode.
This value defaults to ESP_WIFI_AUTH_WPA2_PSK incase password is present and ESP_WIFI_AUTH_OPEN is used.
Please select ESP_WIFI_AUTH_WEP/ESP_WIFI_AUTH_WPA_PSK incase AP is operating in WEP/WPA mode.
config ESP_WIFI_AUTH_OPEN
bool "OPEN"
config ESP_WIFI_AUTH_WEP
bool "WEP"
config ESP_WIFI_AUTH_WPA_PSK
bool "WPA PSK"
config ESP_WIFI_AUTH_WPA2_PSK
bool "WPA2 PSK"
config ESP_WIFI_AUTH_WPA_WPA2_PSK
bool "WPA/WPA2 PSK"
config ESP_WIFI_AUTH_WPA3_PSK
bool "WPA3 PSK"
config ESP_WIFI_AUTH_WPA2_WPA3_PSK
bool "WPA2/WPA3 PSK"
config ESP_WIFI_AUTH_WAPI_PSK
bool "WAPI PSK"
endchoice
endmenu
menu "DHCP Attacks Configuration"
config DHCP_IP
string "DHCP Server Address"
default "192.168.1.1"
help
ASCII string notation of DHCP server's IPv4 address.
Used in DELILAHS_FIST attacks and MitM attacks.
config DNS_SERVER
string "DNS Server Address"
default "1.0.0.1"
help
ASCII string notation of DHCP server's DNS server.
Used in DELILAHS_FIST attacks and MitM attacks.
endmenu