diff options
| author | van Hauser <vh@thc.org> | 2020-09-21 15:47:10 +0200 |
|---|---|---|
| committer | van Hauser <vh@thc.org> | 2020-09-21 15:47:10 +0200 |
| commit | 207cbd5cf7c1956969f42e89bfcb9a0ab451e351 (patch) | |
| tree | a66af166a8c5ea07adc570b28d68ed53433876dc /custom_mutators/libfuzzer/FuzzerFlags.def | |
| parent | f34fe1f81e804bccdda5315968f6a73a47184822 (diff) | |
| download | afl++-207cbd5cf7c1956969f42e89bfcb9a0ab451e351.tar.gz | |
fix and update libfuzzer custom mutator
Diffstat (limited to 'custom_mutators/libfuzzer/FuzzerFlags.def')
| -rw-r--r-- | custom_mutators/libfuzzer/FuzzerFlags.def | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/custom_mutators/libfuzzer/FuzzerFlags.def b/custom_mutators/libfuzzer/FuzzerFlags.def index c9a787e0..4d4841b1 100644 --- a/custom_mutators/libfuzzer/FuzzerFlags.def +++ b/custom_mutators/libfuzzer/FuzzerFlags.def @@ -171,8 +171,9 @@ FUZZER_FLAG_INT(ignore_remaining_args, 0, "If 1, ignore all arguments passed " FUZZER_FLAG_STRING(focus_function, "Experimental. " "Fuzzing will focus on inputs that trigger calls to this function. " "If -focus_function=auto and -data_flow_trace is used, libFuzzer " - "will choose the focus functions automatically.") -FUZZER_FLAG_INT(entropic, 0, "Experimental. Enables entropic power schedule.") + "will choose the focus functions automatically. Disables -entropic when " + "specified.") +FUZZER_FLAG_INT(entropic, 1, "Enables entropic power schedule.") FUZZER_FLAG_INT(entropic_feature_frequency_threshold, 0xFF, "Experimental. If " "entropic is enabled, all features which are observed less often than " "the specified value are considered as rare.") |
