and yet another proof of concept sniffer using the IEEE 802.15.4 standard
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
This proof of concept demonstrates how an ESP32C6 (or any other ESP32 with support for the IEEE 802.15.4 standard) can sniff for packets much like how a normal device using the IEEE 802.11 standard might operate.
Although mesh networks such as that of established by the IEEE 802.15.4 standard are inheritely more secure than those created by WiFi or any other related protocol, activity on such meshes can be seen, to an extent. This project showcases the extent it could really go to, in this case, usually just some data with a source address attached (if the device is in range anyway).
As a developer, I do not endorse the illegal use of this firmware. Any sort of trouble you get into I am not responsible for!!!
- esp-idf@v5.3
- M5NanoC6 or any other ESP32 with support for the IEEE 802.15.4 standard.
To get a local copy up and running follow these simple steps.
- Clone the repo
git clone https://github.com/dj1ch/ieee802154-sniffer.git
-
Install
esp-idf
: Follow documentation and install version 5.3. -
Set board target
idf.py set-target <your_esp32*_board>
If it asks that you delete the build directory or sdkconfig
, you will need to do that to compile for that board.
- Build the project
idf.py build
- Flash to your ESP32(replace
PORT
with the port connected to your ESP32)
idf.py -p PORT flash
or you can run
idf.py flash
Sniffer command list:
start_sniffer
: Starts the sniffer.stop_sniffer
: Stops the sniffer.current_channel
: Returns your current channel.set_channel <channel>
: Switches channel. Replace<channel>
with the channel you intend on switching to (must be an integer from 11-26).
As of now there isn't anything else to implement.
See the open issues for a list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE
for more information.
dj1ch - tg.1ch0712@gmail.com
Project Link: https://github.com/dj1ch/ieee802154-sniffer