https://github.com/fixploit03/hostapd-wpa3
A static hostapd binary with WPA3 support that can be run on any Linux distribution without the need to install additional dependencies.
https://github.com/fixploit03/hostapd-wpa3
fixploit03 hostapd hostapd-wpa3 sae wifi-hotspot wpa3
Last synced: 11 days ago
JSON representation
A static hostapd binary with WPA3 support that can be run on any Linux distribution without the need to install additional dependencies.
- Host: GitHub
- URL: https://github.com/fixploit03/hostapd-wpa3
- Owner: fixploit03
- Created: 2026-06-28T18:18:58.000Z (22 days ago)
- Default Branch: main
- Last Pushed: 2026-06-29T11:47:59.000Z (21 days ago)
- Last Synced: 2026-06-29T13:25:31.431Z (21 days ago)
- Topics: fixploit03, hostapd, hostapd-wpa3, sae, wifi-hotspot, wpa3
- Language: Shell
- Homepage: https://github.com/fixploit03/hostapd-wpa3
- Size: 2.99 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hostapd-wpa3
A static [hostapd](https://w1.fi/hostapd/) binary with WPA3 support that can be run on any Linux distribution without the need to install additional dependencies.
## AP Configuration
```bash
nano hostapd_wpa3.conf
```
Add the following content:
```bash
interface=wlan0
driver=nl80211
ssid=hostapd-wpa3
hw_mode=g
channel=6
wpa=2
sae_password=12345678
wpa_key_mgmt=SAE
rsn_pairwise=CCMP
ieee80211w=2
```
## Run the AP
```bash
sudo ./hostapd hostapd_wpa3.conf
```
Or run it using the script:
```bash
Usage: sudo ./hostapd-wpa3
```