Module libafl::executors[][src]

Executors take input, and run it in the target.

Re-exports

pub use inprocess::InProcessExecutor;
pub use timeout::TimeoutExecutor;

Modules

inprocess

The InProcess Executor is a libfuzzer-like executor, that will simply call a function. It should usually be paired with extra error-handling, such as a restarting event manager, to be effective.

timeout

A TimeoutExecutor sets a timeout before each target run

Enums

ExitKind

How an execution finished.

Traits

CustomExitKind
Executor

An executor takes the given inputs, and runs the harness/target.

HasObservers