> For the complete documentation index, see [llms.txt](https://book.ice-wzl.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://book.ice-wzl.xyz/wifi-bluetooth-zigbee-sdr-smartcards/bettercap-bluetooth-wifi.md).

# Bettercap Bluetooth / Wifi

* Bettercap is an excellent tool for Bluetooth and Wifi assessments.

### Wifi Recon

* make sure your interface is in monitor mode.

```
bettercap -iface wlan0
>>> wifi.recon on 
```

* see captured networks

```
wifi.show
```

### PMKID Capture

* attempt to associate to all APs attempting to capture PMKID (first EAPOL frame)

```
sudo bettercap -iface wlan0mon 
wifi.recon on 
# wait to locate APs
wifi.show
wifi.assoc all
```
