
* llmp docs skeleton * llmp documentation * more llmp docu * llmp * some core concepts * start working on tutorial * adapted rng_core to lain * fix tutorial build * warnings, format * add explanation * No need to own the types * metadata * writing * fmt * tutorial folder * lain needs nightly * added mdbook test to ci * fix ci, add linkcheck * more book * baby * tutorial target * fix mdbook build * fix mdbook test * more book * fixed typo * fixed build * spawn instances' * 'finish' book * added sugar crate information Co-authored-by: Dominik Maier <domenukk@gmail.com>
581 B
581 B
Mutator
The Mutator is an entity that takes one or more Inputs and generates a new derived one.
Mutators can be composed and they are generally linked to a specific Input type.
There can be, for instance, a Mutator that applies more than a single type of mutation on the input. Consider a generic Mutator for a byte stream, bit flip is just one of the possible mutations but not the only one, there is also, for instance, the random replacement of a byte of the copy of a chunk.
In LibAFL, Mutator
is a trait.