profuzz_core 0.1.0

profuzz is a generic approach to easily create a fast and easy-to use network protocol fuzzer for custom targets.
Documentation
1
2
3
4
5
6
7
8
/// contains the fuzzing engine which starts the main fuzzing loop and the TUI
pub mod engine;

/// Contains all statistical data collected by the fuzzing engine. If used with a TUI they will be
/// displayed there.
pub mod stats;

mod ui;