diff options
author | van Hauser <vh@thc.org> | 2020-08-14 13:23:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-14 13:23:14 +0200 |
commit | a7537b5511ad767d2240cf2dc6d3e261daa676f9 (patch) | |
tree | 2cd8418efff844e634425e050ef716301adfd84b /src/afl-fuzz-stats.c | |
parent | 15e799f7ae666418e75c6a79db833c5316b21f97 (diff) | |
parent | 83281503b3f1d4109c6f7a6af62a2133d55f1150 (diff) | |
download | afl++-a7537b5511ad767d2240cf2dc6d3e261daa676f9.tar.gz |
Merge branch 'debug' into dev
Diffstat (limited to 'src/afl-fuzz-stats.c')
-rw-r--r-- | src/afl-fuzz-stats.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/afl-fuzz-stats.c b/src/afl-fuzz-stats.c index aeb290bd..0cc06e12 100644 --- a/src/afl-fuzz-stats.c +++ b/src/afl-fuzz-stats.c @@ -116,6 +116,7 @@ void write_stats_file(afl_state_t *afl, double bitmap_cvg, double stability, "edges_found : %u\n" "var_byte_count : %u\n" "havoc_expansion : %u\n" + "tainted_inputs : %u\n" "afl_banner : %s\n" "afl_version : " VERSION "\n" @@ -149,8 +150,8 @@ void write_stats_file(afl_state_t *afl, double bitmap_cvg, double stability, #else -1, #endif - t_bytes, afl->var_byte_count, afl->expand_havoc, afl->use_banner, - afl->unicorn_mode ? "unicorn" : "", + t_bytes, afl->var_byte_count, afl->expand_havoc, afl->taint_count, + afl->use_banner, afl->unicorn_mode ? "unicorn" : "", afl->fsrv.qemu_mode ? "qemu " : "", afl->non_instrumented_mode ? " non_instrumented " : "", afl->no_forkserver ? "no_fsrv " : "", afl->crash_mode ? "crash " : "", |