Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 491 Bytes

generator.md

File metadata and controls

9 lines (5 loc) · 491 Bytes

Generator

A Generator is a component designed to generate an Input from scratch.

Typically, a random generator is used to generate random inputs.

Generators are traditionally less used in Feedback-driven Fuzzing, but there are exceptions, like Nautilus, that uses a Grammar generator to create the initial corpus and a sub-tree Generator as a mutation of its grammar Mutator.

In the code, Generator is a trait.