Posts

Showing posts with the label ubertooth

Using Pure Python to Interact With an Ubertooth and Parse Bluetooth Baseband Data

Using Pure Python to Interact With an Ubertooth and Parse Bluetooth Baseband Data In mid 2013 I gave a talk at a conference called Lockdown in Wisconsin.  During the talk I released a pure python library for parsing rudimentary bluetooth baseband data and interacting with an Ubertooth USB device. The core Ubertooth C libraries and tools are much more robust (and faster), but the pure python implementation provided the following: Quick deployment with no need for compiling. Rapid prototyping of new and custom Ubertooth tools in python. Quick and easy way to hook up an Ubertooth to mobile phones and other ARM devices. Ubertooth data integration into my favorite python analytic libraries An excuse for me to better understand the baseband layer and pyusb Quick Notes: you will need the pure python pyusb library installed to use pyubertooth  Setup: download the pyubertooth source code via git the cli pyubertooth.py is in the pyubertooth/pyubertooth directory git clone https://github...