Skip to content

Scapy sockets to communicate with Bluetooth controllers

Notifications You must be signed in to change notification settings

eriklundh/scapy-usbbluetooth

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Scapy UsbBluetooth

Build scapy-usbbluetooth

This package contains code to allow Scapy sockets to communicate with Bluetooth controllers using UsbBluetooth.

Installation

Just use pip :)

pip install scapy-usbbluetooth

Usage

import usbbluetooth
from scapy_usbbluetooth import UsbBluetoothSocket


# Get a list of all the available devices
devices = usbbluetooth.list_devices()
for dev in devices:
    print(dev)

# Open a socket using a device
socket = UsbBluetoothSocket(devices[0])

# Create a reset packet
pkt = HCI_Hdr() / HCI_Command_Hdr() / HCI_Cmd_Reset()

# Send a packet to the controller and await a response
response = socket.sr1(pkt)
response.show()

About

Scapy sockets to communicate with Bluetooth controllers

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%