diff options
author | Marcel Boehme <marcel.boehme@acm.org> | 2020-12-07 21:32:25 +0000 |
---|---|---|
committer | Marcel Boehme <marcel.boehme@acm.org> | 2020-12-07 21:32:25 +0000 |
commit | 06ec5ab3d723bf7f0a2ee76be8b12c09fa870a9d (patch) | |
tree | 04b3c8c06a0cd9d1e9256eace31c52141941bb44 /src/afl-fuzz-one.c | |
parent | e6de85861c4ec8fcc13a7f945bc8b3dfefa193bc (diff) | |
download | afl++-06ec5ab3d723bf7f0a2ee76be8b12c09fa870a9d.tar.gz |
Sampling next seed by weight (hit_count, bitmap_size, exec_us)
Diffstat (limited to 'src/afl-fuzz-one.c')
-rw-r--r-- | src/afl-fuzz-one.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/afl-fuzz-one.c b/src/afl-fuzz-one.c index ca48f72a..a48afffb 100644 --- a/src/afl-fuzz-one.c +++ b/src/afl-fuzz-one.c @@ -445,8 +445,10 @@ u8 fuzz_one_original(afl_state_t *afl) { if (unlikely(afl->not_on_tty)) { - ACTF("Fuzzing test case #%u (%u total, %llu uniq crashes found)...", - afl->current_entry, afl->queued_paths, afl->unique_crashes); + ACTF("Fuzzing test case #%u (%u total, %llu uniq crashes found, perf_score=%0.0f, exec_us=%llu, hits=%u, map=%u)...", + afl->current_entry, afl->queued_paths, afl->unique_crashes, + afl->queue_cur->perf_score, afl->queue_cur->exec_us, + afl->n_fuzz[afl->queue_cur->n_fuzz_entry], afl->queue_cur->bitmap_size); fflush(stdout); } |