hexaNetFrameDecoder is a Python tool designed to decode and interpret hexadecimal network frames/data.
It helps convert raw hex-formatted frames into a readable, parsed structure β useful for network analysis, debugging, protocol reverse-engineering, security tests or embedded systems debugging.
This project aims to allow users and developers to quickly transform raw hex dumps into meaningful data without manual parsing.
Before using this tool, make sure you have:
- Python 3.8+ (or whatever version your code supports)
- A valid hex frame input (file), correctly formatted
Clone the repository and install dependencies:
git clone https://github.com/Axel-cmd/hexaNetFrameDecoder.git
cd hexaNetFrameDecoder
# (Optional but recommended) create a virtual environment
python3 -m venv venv
source venv/bin/activate # macOS / Linux
# venv\Scripts\activate # WindowsHere is a basic example of how to use the decoder:
python main.py <input_hex_frame.txt>