Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
bluesnoop — A TUI bluetooth utility for radar analysis and war driving 🦉 | Kitploit
Tools/GitHubGitHub/ang13t/bluesnoop
OSINT (Open Source Intelligence)ReconnaissanceBluetooth SecurityIoT SecurityInformation GatheringWireless Security
GitHubang13t/bluesnoop

bluesnoop

A TUI bluetooth utility for radar analysis and war driving 🦉

View Repository
4067 months agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

DroneXtract logo

bluesnoop

A simple Bluetooth Low Energy (BLE) sniffer using Python and the Bleak library

Features

  • Identify nearby device UUIDs and names
  • Persistent tracking of first and last appearance
  • Translation of cryptic model IDs
  • Export intelligence for external analysis

Demo Gallery

Gallery Image

Timed Snoop

Gallery Image

Limitless Snoop

Getting Started

Grant Bluetooth Permissions

If you are using iTerm2, you need to ensure the terminal itself has permission to Bluetooth. Open System Settings (or System Preferences). Go to Privacy & Security > Bluetooth and Grant Access to iTerm2.

root@kitploit:~
python -m venv .venv
source .venv/bin/activate
pip install asyncio bleak rich manuf bluetooth-numbers geocoder
python3 bluesnoop.py

Contributing

bluesnoop is open to any contributions. Please fork the repository and make a pull request with the features or fixes you want to be implemented.

Upcoming

Interpreting Bluetooth UUID && OUID Numbers
  • Use a public OUI database (like the IEEE OUI list) to map MAC address prefixes to manufacturers.
  • You can find the OUI database here: https://standards-oui.ieee.org
root@kitploit:~
An Organizationally Unique Identifier (OUI) is a 24-bit (three-byte) number, managed by the IEEE, that uniquely identifies a manufacturer or organization for network devices, forming the first half of a device's MAC address to ensure global uniqueness 

The uuid.UUID class in Python strictly validates strings against the RFC 4122 standard. Specifically, it looks for a "version" digit at a specific position in the string.

Why it's failing In a standard UUID, the first digit of the third group (e.g., xxxx-xxxx-Nxxx-xxxx) must be a number from 1 to 5 (representing the version).

Looking at your data:

D5D93B6E-C324-FD7B... -> The version digit is F.

6ADBBD89-CBFF-0FE8... -> The version digit is 0.

Since F and 0 are not valid RFC 4122 versions (1-5), Python throws a ValueError: badly formed hexadecimal UUID string.

Explore more on the following: discovered_devices_and_advertisement_data // https://bleak.readthedocs.io/en/latest/api/scanner.html#bleak.BleakScanner.discovered_devices // 16:20 @ 1/8/26 BW

Support

If you enjoyed bluesnoop, please consider becoming a sponsor in order to fund my future projects.

To check out my other works, visit my GitHub profile.

Download Tool