diff options
author | van Hauser <vh@thc.org> | 2023-08-22 17:32:56 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-22 17:32:56 +0000 |
commit | b397bdc3d976921a9b936f21273adc3a1bf9d4f4 (patch) | |
tree | 454e220dae35bd009710ef75a7ec77b44520b935 /src/afl-fuzz.c | |
parent | f596a297c4de6a5e1a6fb9fbb3b4e18124a24f58 (diff) | |
parent | e2026f7b71752c9b0bbba7438e2c62f2a4bca7f0 (diff) | |
download | afl++-b397bdc3d976921a9b936f21273adc3a1bf9d4f4.tar.gz |
Merge pull request #1841 from AFLplusplus/dev
Dev
Diffstat (limited to 'src/afl-fuzz.c')
-rw-r--r-- | src/afl-fuzz.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c index cdb3f996..43834172 100644 --- a/src/afl-fuzz.c +++ b/src/afl-fuzz.c @@ -299,6 +299,7 @@ static void usage(u8 *argv0, int more_help) { "AFL_NO_FORKSRV: run target via execve instead of using the forkserver\n" "AFL_NO_SNAPSHOT: do not use the snapshot feature (if the snapshot lkm is loaded)\n" "AFL_NO_STARTUP_CALIBRATION: no initial seed calibration, start fuzzing at once\n" + "AFL_NO_WARN_INSTABILITY: no warn about instability issues on startup calibration\n" "AFL_NO_UI: switch status screen off\n" "AFL_NYX_AUX_SIZE: size of the Nyx auxiliary buffer. Must be a multiple of 4096.\n" " Increase this value in case the crash reports are truncated.\n" @@ -2899,6 +2900,16 @@ stop_fuzzing: time_spent_working / afl->fsrv.total_execs); #endif + if (afl->afl_env.afl_final_sync) { + + SAYF(cYEL "[!] " cRST + "\nPerforming final sync, this make take some time ...\n"); + sync_fuzzers(afl); + write_bitmap(afl); + SAYF(cYEL "[!] " cRST "Done!\n\n"); + + } + if (afl->is_main_node) { u8 path[PATH_MAX]; |