Files
bigbrother/templates/hostapd/open.conf.j2
T
n0mad1k ccc6b729de Initial public release
Full BigBrother network implant - passive SOC + active exploitation.
Personal identifiers removed; all capabilities intact.
See README.md for setup and docs/deployment.md for detailed deployment.
2026-06-26 09:52:50 -04:00

40 lines
1.0 KiB
Django/Jinja

# BigBrother hostapd configuration — Open AP (no password)
#
# Used by evil_twin.py for captive portal attacks.
# Jinja2 variables:
# interface: Wireless interface (e.g., "wlan0")
# ssid: Target SSID to clone
# channel: WiFi channel (1-11 for 2.4GHz)
# driver: Wireless driver (default: nl80211)
# hw_mode: Hardware mode (default: g for 2.4GHz)
# country_code: Regulatory domain (default: US)
# beacon_int: Beacon interval in ms (default: 100)
interface={{ interface | default('wlan0') }}
driver={{ driver | default('nl80211') }}
ssid={{ ssid }}
hw_mode={{ hw_mode | default('g') }}
channel={{ channel | default(6) }}
country_code={{ country_code | default('US') }}
ieee80211d=1
# No encryption — open AP for captive portal
auth_algs=1
wpa=0
# Beacon and capabilities
beacon_int={{ beacon_int | default(100) }}
wmm_enabled=0
macaddr_acl=0
ignore_broadcast_ssid=0
# 802.11n support (better performance)
ieee80211n=1
ht_capab=[HT40+][SHORT-GI-20][SHORT-GI-40]
# Logging
logger_syslog=-1
logger_syslog_level=2
logger_stdout=-1
logger_stdout_level=2