Based off the project Gattacker this dockerizes it and passes through your usb bluetooth dongles to sniff nearby services!
Contributions are welcome on the github page
Unfortunately I've only had luck getting it to work on Linux (atleast for now). If you're on Windows or Mac, start up a linux vm with your favorite distro, install docker, pass through your dongles to the vm, and you should be good to go!
This project has two components - a master and a slave, and they need to talk to each other. They're both on this repo under their respective tags (slavevX and mastervX). However, because there's some specific network configuration needed, the easiest way to run is with docker-compose. Make sure you've got 2+ dedicated bluetooth dongles (onboard chips don't usually work).
version: '3'
services:
slave:
image: animcogn/gattacker:slavev1
network_mode: "host"
container_name: "slave"
restart: unless-stopped
master:
image: animcogn/gattacker:masterv1
network_mode: "host"
container_name: "master"
restart: unless-stopped
depends_on:
- slave
Content type
Image
Digest
Size
205.4 MB
Last updated
almost 8 years ago
docker pull animcogn/gattacker:slavev1