mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-16 20:08:07 +00:00
custom mutator fuzzing yields UI
This commit is contained in:
@ -24,6 +24,7 @@ Version ++2.54d (dev):
|
|||||||
FIFO or disk partition
|
FIFO or disk partition
|
||||||
- setting LLVM_CONFIG for llvm_mode will now again switch to the selected
|
- setting LLVM_CONFIG for llvm_mode will now again switch to the selected
|
||||||
llvm version. If you setup is correct.
|
llvm version. If you setup is correct.
|
||||||
|
- fuzzing strategy yields for custom mutator were missing from the UI, added them :)
|
||||||
- reducing duplicate code in afl-fuzz
|
- reducing duplicate code in afl-fuzz
|
||||||
- added "make help"
|
- added "make help"
|
||||||
- removed compile warnings from python internal stuff
|
- removed compile warnings from python internal stuff
|
||||||
|
@ -576,12 +576,13 @@ void show_stats(void) {
|
|||||||
" imported : " cRST "%-10s" bSTG bV "\n",
|
" imported : " cRST "%-10s" bSTG bV "\n",
|
||||||
tmp, sync_id ? DI(queued_imported) : (u8*)"n/a");
|
tmp, sync_id ? DI(queued_imported) : (u8*)"n/a");
|
||||||
|
|
||||||
sprintf(tmp, "%s/%s, %s/%s, %s/%s", DI(stage_finds[STAGE_HAVOC]),
|
sprintf(tmp, "%s/%s, %s/%s, %s/%s, %s/%s", DI(stage_finds[STAGE_HAVOC]),
|
||||||
DI(stage_cycles[STAGE_HAVOC]), DI(stage_finds[STAGE_SPLICE]),
|
DI(stage_cycles[STAGE_HAVOC]), DI(stage_finds[STAGE_SPLICE]),
|
||||||
DI(stage_cycles[STAGE_SPLICE]), DI(stage_finds[STAGE_PYTHON]),
|
DI(stage_cycles[STAGE_SPLICE]), DI(stage_finds[STAGE_PYTHON]),
|
||||||
DI(stage_cycles[STAGE_PYTHON]));
|
DI(stage_cycles[STAGE_PYTHON]), DI(stage_finds[STAGE_CUSTOM_MUTATOR]),
|
||||||
|
DI(stage_cycles[STAGE_CUSTOM_MUTATOR]));
|
||||||
|
|
||||||
SAYF(bV bSTOP " havoc : " cRST "%-36s " bSTG bV bSTOP, tmp);
|
SAYF(bV bSTOP "havoc/custom : " cRST "%-36s " bSTG bV bSTOP, tmp);
|
||||||
|
|
||||||
if (t_bytes)
|
if (t_bytes)
|
||||||
sprintf(tmp, "%0.02f%%", stab_ratio);
|
sprintf(tmp, "%0.02f%%", stab_ratio);
|
||||||
|
Reference in New Issue
Block a user