libafl 0.16.0

Slot your own fuzzers together and extend their features using Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! The grammartec module contains the grammar-based mutator and related structures.
/// Chunkstore module
pub mod chunkstore;
/// Context module
pub mod context;
/// Mutator module
pub mod mutator;
/// Newtypes module
pub mod newtypes;
#[cfg(feature = "nautilus_py")]
/// Module to load grammars from Python scripts
pub mod python_grammar_loader;
/// Recursion info module
pub mod recursion_info;
/// Rule module
pub mod rule;
/// Tree module
pub mod tree;