This crate allows to easily develop Rust plugins for Tranalyzer2, a network traffic analysis tool.
https://tranalyzer.com/rustdoc/t2plugin/
https://github.com/Tranalyzer/rustExample
-
Clone the Tranalyzer2 Rust plugin template and rename it.
cd $T2HOME git clone https://github.com/Tranalyzer/rustTemplate.git myPluginName cd myPluginName ./autogen.sh --rename
-
Optional: change the
PLUGINORDER
at the top ofautogen.sh
. -
Fill the different methods of the
T2Plugin
trait implementation insrc/lib.rs
.