A Node.js package for BLE (Bluetooth Low Energy) security assessment using Man-in-the-Middle and other attacks.
Install
Configure
Running both components Set up variables in config.env:
If you run “central” and “peripheral” modules on separate boxes with just one BT4 interface, you can leave the values commented.
Start “central” device
Debug:
Scan for advertisements
Explore services and characteristics
Hook configuration (option)
For active request/response tampering configure hook functions for characteristic in device’s json services file.
Example:
<dynamic|static><Write|Read|Notify>
dynamic: connect to original device
static: do not connect to original device, run the tampering function locally
It will try to invoke the specified function from hookFunctions, include your own. A few examples provided in hookFunctions subdir.
MAC address cloning
For many applications it is necessary to clone MAC address of original device. A helper tool bdaddr from Bluez is provided in helpers/bdaddr.
./mac_adv -a <advertisement_json_file> [ -s <services_json_file> ]
Dump, replay
Dump files are saved in a path configured by DUMP_PATH in config.env (by default dump). More info: https://github.com/securing/gattacker/wiki/Dump-and-replay
Troubleshooting
Turn off, cross fingers, try again
reset device
With this configuration you may experience various problems.
Try switching NOBLE_HCI_INTERFACE and BLENO_HCI_INTERFACE
hcidump debug
Install
UsageCode:
npm install gattacker
Configure
Running both components Set up variables in config.env:
- NOBLE_HCI_DEVICE_ID : noble (“central”, ws-slave) device
- BLENO_HCI_DEVICE_ID : bleno (“peripheral”, advertise) device
If you run “central” and “peripheral” modules on separate boxes with just one BT4 interface, you can leave the values commented.
- WS_SLAVE : IP address of ws-slave box
- DEVICES_PATH : path to store json files
Start “central” device
Connects to targeted peripheral and acts as websocket server.Code:
sudo node ws-slave
Debug:
ScanningCode:
DEBUG=ws-slave sudo node ws-slave
Scan for advertisements
Without parameters scans for broadcasted advertisements, and records them as json files (.adv.json) in DEVICES_PATHCode:
node scan
Explore services and characteristics
Explore services and characteristics of chosen peripheral. Saves the explored service structure in json file (.srv.json) in DEVICES_PATH.Code:
node scan <peripheral>
Hook configuration (option)
For active request/response tampering configure hook functions for characteristic in device’s json services file.
Example:
Functions:Code:
{
"uuid": "06d1e5e779ad4a718faa373789f7d93c",
"name": null,
"properties": [
"write",
"notify"
],
"startHandle": 8,
"valueHandle": 9,
"endHandle": 10,
"descriptors": [
{
"handle": 10,
"uuid": "2902",
"value": ""
}
],
"hooks": {
"dynamicWrite": "dynamicWriteFunction",
"dynamicNotify": "customLog"
}
}
Click to expand...
<dynamic|static><Write|Read|Notify>
dynamic: connect to original device
static: do not connect to original device, run the tampering function locally
It will try to invoke the specified function from hookFunctions, include your own. A few examples provided in hookFunctions subdir.
Start “peripheral” deviceCode:
staticValue – static value
It connects via websocket to ws-slave in order to forward requests to original device. Static run (-s) sets services locally, does not connect to ws-slave. You have to configure the hooks properly.Code:
node advertise -a <advertisement_json_file> [ -s <services_json_file> ]
MAC address cloning
For many applications it is necessary to clone MAC address of original device. A helper tool bdaddr from Bluez is provided in helpers/bdaddr.
wrapper script:Code:
cd helpers/bdaddr
make
./mac_adv -a <advertisement_json_file> [ -s <services_json_file> ]
Dump, replay
Dump files are saved in a path configured by DUMP_PATH in config.env (by default dump). More info: https://github.com/securing/gattacker/wiki/Dump-and-replay
Troubleshooting
Turn off, cross fingers, try again
reset device
Running ws-slave and advertise on the same boxCode:
hciconfig <hci_interface> reset
With this configuration you may experience various problems.
Try switching NOBLE_HCI_INTERFACE and BLENO_HCI_INTERFACE
hcidump debug
Code:
hcidump -x -t <hci_interface>