# ToxShark **Repository Path**: Muse_72/tox-shark ## Basic Information - **Project Name**: ToxShark - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-11-07 - **Last Updated**: 2023-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ToxShark ## Introduction This plug-in can parse the tox protocol. Its implementation principle is to first parse udp packets and extract Data fields, and then deserialize Data data with py files generated by protoc, so as to achieve complete parsing. ### Use the steps Description 1. Use the following command to generate proto_pb2.py: ```protoc -I=E:\codeproject\ToxShark\proto --python_out=E:\codeproject\ToxShark nrpc.option.proto srv.infra.power.efusecontrol.proto``` 2. There is a parameter called type in main.py that allows the user to switch between parsing modes, 0 for online parsing and 1 for offline parsing. 3. Use the following command to run plug-in: ```python3 main.py```