Merge pull request #1374 from CarloMara/stable

Add new mode to AFLplusplus
This commit is contained in:
van Hauser
2022-04-03 09:31:23 +02:00
committed by GitHub
5 changed files with 862 additions and 3 deletions

View File

@ -2528,8 +2528,17 @@ stop_fuzzing:
write_bitmap(afl);
save_auto(afl);
SAYF(CURSOR_SHOW cLRD "\n\n+++ Testing aborted %s +++\n" cRST,
afl->stop_soon == 2 ? "programmatically" : "by user");
if (afl->afl_env.afl_pizza_mode) {
SAYF(CURSOR_SHOW cLRD "\n\n+++ Baking aborted %s +++\n" cRST,
afl->stop_soon == 2 ? "programmatically" : "by the chef");
} else {
SAYF(CURSOR_SHOW cLRD "\n\n+++ Testing aborted %s +++\n" cRST,
afl->stop_soon == 2 ? "programmatically" : "by user");
}
if (afl->most_time_key == 2) {