From 9de74cce92ed9a6552d518b195fc1dfb02fa584d Mon Sep 17 00:00:00 2001 From: Andrea Fioraldi Date: Thu, 10 Oct 2019 19:46:46 +0200 Subject: radamsa mutator as havoc cycle replacement with probability 1/24 --- src/afl-fuzz-globals.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/afl-fuzz-globals.c') diff --git a/src/afl-fuzz-globals.c b/src/afl-fuzz-globals.c index a5ccfdf9..236c4dd3 100644 --- a/src/afl-fuzz-globals.c +++ b/src/afl-fuzz-globals.c @@ -95,6 +95,8 @@ char *power_names[POWER_SCHEDULES_NUM] = {"explore", "fast", "coe", u8 schedule = EXPLORE; /* Power schedule (default: EXPLORE)*/ u8 havoc_max_mult = HAVOC_MAX_MULT; +u8 use_radamsa; + u8 skip_deterministic, /* Skip deterministic stages? */ force_deterministic, /* Force deterministic stages? */ use_splicing, /* Recombine input files? */ @@ -210,6 +212,9 @@ u64 stage_finds[32], /* Patterns found per fuzz stage */ u32 rand_cnt; /* Random number counter */ #endif +u32 rand_seed[2]; +s64 init_seed; + u64 total_cal_us, /* Total calibration time (us) */ total_cal_cycles; /* Total calibration cycles */ -- cgit 1.4.1