Getting Started
This section will guide you through setting up and running the fuzzer for the first time. We'll cover the basic steps needed to configure the fuzzer and execute a simple fuzzing session.
Overview
To get started with the fuzzer, you'll need to:
- Configure the Fuzzer: Set up the
FuzzerConfig
with your desired options. - Define Target Functions: Create one or more functions that the fuzzer will test.
- Initialize the Fuzzer: Create an instance of the
Fuzzer
and add your target functions. - Run the Fuzzer: Execute the fuzzing session and monitor progress.
In the next section, we'll walk through a quick start example that demonstrates these steps.