Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.bytejmp.com/llms.txt

Use this file to discover all available pages before exploring further.

Overview

WPA3 SAE (Simultaneous Authentication of Equals) is resistant to offline dictionary attacks, no crackable handshake is exposed. wacker performs online brute force by attempting each password from a wordlist against the live AP, one connection attempt at a time. Slow by nature (network-rate limited), but the only option against pure WPA3 networks with no WPA2 fallback.

Install

git clone https://github.com/blunderbuss-wctf/wacker.git
cd wacker
pip3 install -r requirements.txt

Usage

./wacker.py [options]

Common Flags

FlagDescription
--wordlist <file>Password wordlist
--ssid <SSID>Target network SSID
--bssid <MAC>Target AP MAC address
--interface <iface>Wireless interface (managed mode)
--freq <MHz>AP operating frequency

Example

cd ~/tools/wacker
./wacker.py \
  --wordlist ~/rockyou-top100000.txt \
  --ssid <TARGET-SSID> \
  --bssid <BSSID> \
  --interface wlan1 \
  --freq 2462
Common frequencies: 2412 (ch1), 2437 (ch6), 2462 (ch11), 5180 (ch36), 5200 (ch40).