Andrea Fioraldi c2776e117a
emu::current_cpu() is now the CPU that hitted the breakpoint in fullsystem (#910)
* emu::current_cpu() is now kept after vm stop and it is the CPU that hitted the breakpoint

* clippy

* uninit

* clippy

* clippy

* clippy

* clippy

* nightly override in CI

* nightly override in CI

* components

* components

* targets

* targets

* clippy

* clippy

* clippy

* clippy

* clippy (again)

* MaybeUninit

Co-authored-by: Dominik Maier <dmnk@google.com>
2022-11-25 11:57:08 +01:00
..
2022-08-25 10:55:35 +02:00
2022-08-25 10:55:35 +02:00
2022-08-25 10:55:35 +02:00

libafl_nyx is the libafl's front-end for nyx fuzzer. This crate provides both the standalone mode and parallel mode:

  • In standalone mode, no VM snapshot is serialized and stored in the working directory. That might be useful if you really want to run the fuzzer with only one process (meaning one VM).
  • In parallel mode, the first fuzzer process (parent) has to create the VM snapshot while all other child processes will wait for the snapshot files to appear in the working directory.

In order to use this crate, you need to specify the shared directory and mode in NyxHelper, then use NyxExecutor. For more details, please see ./fuzzers/nyx_libxml2_standalone and ./fuzzers/nyx_libxml2_parallel.