diff options
| author | Your Name <you@example.com> | 2022-02-18 08:10:19 +0000 |
|---|---|---|
| committer | Your Name <you@example.com> | 2022-02-18 08:10:19 +0000 |
| commit | 5f45f380c3d9837a5a8457cf749b27a8afbd3f53 (patch) | |
| tree | d58aba70a7467e494b993bd8d72d9a915ef43cd0 /frida_mode/src/instrument | |
| parent | cb1256499f7e07fd0edf0958d08b958fec63c34c (diff) | |
| download | afl++-5f45f380c3d9837a5a8457cf749b27a8afbd3f53.tar.gz | |
Changes to default CMOV instrumentation to off
Diffstat (limited to 'frida_mode/src/instrument')
| -rw-r--r-- | frida_mode/src/instrument/instrument.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/frida_mode/src/instrument/instrument.c b/frida_mode/src/instrument/instrument.c index 4877f4fb..43560478 100644 --- a/frida_mode/src/instrument/instrument.c +++ b/frida_mode/src/instrument/instrument.c @@ -276,7 +276,7 @@ void instrument_config(void) { instrument_fixed_seed = util_read_num("AFL_FRIDA_INST_SEED", 0); instrument_coverage_unstable_filename = (getenv("AFL_FRIDA_INST_UNSTABLE_COVERAGE_FILE")); - instrument_coverage_insn = (getenv("AFL_FRIDA_INST_NO_INSN") == NULL); + instrument_coverage_insn = (getenv("AFL_FRIDA_INST_INSN") != NULL); instrument_debug_config(); instrument_coverage_config(); @@ -302,6 +302,8 @@ void instrument_init(void) { instrument_coverage_unstable_filename == NULL ? " " : instrument_coverage_unstable_filename); + FOKF(cBLU "Instrumentation" cRST " - " cGRN "instructions:" cYEL " [%c]", + instrument_coverage_insn ? 'X' : ' '); if (instrument_tracing && instrument_optimize) { |
