1 stable release
1.0.0 | Nov 2, 2024 |
---|
#321 in Network programming
150 downloads per month
10KB
bluesniff
bluesniff is a simple Bluetooth device scanner written in Rust. It scans for nearby Bluetooth devices and lists their MAC addresses and names. This project uses the btleplug
crate to handle Bluetooth operations and the tokio
crate for asynchronous functionality.
Features
- Scans for Bluetooth devices in the vicinity.
- Displays the MAC addresses and names of detected devices.
- Built with Rust's asynchronous capabilities for efficient operation.
Prerequisites
To build and run bluesniff, you need:
- Rust installed on your machine.
- A Bluetooth adapter that supports BLE (Bluetooth Low Energy).
- The necessary permissions to access Bluetooth devices.
Installation
You can install bluesniff directly from crates.io
:
cargo install bluesniff
Alternatively, if you want to build from source, clone the repository:
-
Clone the repository:
git clone https://github.com/yourusername/bluesniff.git cd bluesniff
-
Build the project:
cargo build
-
Run the scanner with:
cargo run
Note: You may need to run the command with
sudo
depending on your system configuration.
Usage
Upon running bluesniff, the program will start scanning for Bluetooth devices for a specified duration (5 seconds). It will display the MAC addresses and names of any detected devices.
Example output:
[BLUESNIFF] Initializing scan...
[BLUESNIFF] Scanning for Bluetooth devices...
[BLUESNIFF] Address: XX:XX:XX:XX:XX:XX, Name: Device Name
[BLUESNIFF] Done scanning...
Contributing
Contributions are welcome! If you would like to improve bluesniff, feel free to fork the repository and submit a pull request.
License
This project is licensed under the MIT License. See the LICENSE file for details.
Acknowledgments
Dependencies
~5–34MB
~516K SLoC