Bettercap
The Swiss Army knife for 802.11, BLE, HID, CAN-bus, IPv4 and IPv6 networks reconnaissance and MITM attacks.
Install (example for 'Nix distros , screw Windows)
#avoid installing with apt, horrible experience, build from Go instead
#prerequisites:
sudo apt update
sudo apt install -y build-essential pkg-config libpcap-dev libusb-1.0-0-dev libnetfilter-queue-dev git
#install from repo
git clone https://github.com/bettercap/bettercap.git
cd bettercap
go build main.go
cp main bettercap
cp bettercap /usr/local/bin
#make sure the BLE interface is up (if running without BLE dongle/antenna)
hciconfig -a
btmgmt info
systemctl stop bluetooth
#Run Web UI
bettercap -eval "ui on"
Service will run on http://127.0.0.1:8080/#/ble
Defaults
User: user
Password: pass
#From CLi
ble.recon on
ble.enum 78:02:XX:XX:XX:XX
ble.show # list all discovered devices
Last updated