FRET-LibAFL/fuzzers/baby/baby_fuzzer_custom_executor
Dongjia "toka" Zhang 95d87bd7d8
0.14.1 (#2698)
* 0.14.1

* fixer

* don't build nyx

---------

Co-authored-by: Dominik Maier <domenukk@gmail.com>
2024-12-02 21:06:29 +01:00
..
2024-11-11 19:36:55 +01:00
2024-11-05 16:49:07 +01:00
2024-12-02 21:06:29 +01:00
2024-11-05 16:49:07 +01:00
2024-11-05 16:49:07 +01:00

Baby fuzzer with Custom Executor

This is a minimalistic example about how to create a LibAFL-based fuzzer.

In contrast to the normal baby fuzzer, this uses a (very simple) custom executor.

The custom executor won't catch any timeouts or actual errors (i.e., memory corruptions, etc.) in the target.

The tested program is a simple Rust function without any instrumentation. For real fuzzing, you will want to add some sort to add coverage or other feedback.

You can run this example using cargo run, and you can enable the TUI feature by running cargo run --features tui.