You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AFL has the possibility to configure partial instrumentation. This could help the fuzzer concentrate on the important part as well as have a coverage that is only on what we find interesting.
The text was updated successfully, but these errors were encountered:
As #[no_coverage] in rustc is __attribute__((no_sanitize("coverage"))) it should allow us to support disabling instrumentation on a per function basis, thus allowing partial instrumentation
This is now implemented with bruno's afl.rs cmplog feature, via AFL_LLVM_ALLOWLIST/AFL_LLVM_DENYLIST but this does not work for honggfuzz.
I think we can close this?
AFL has the possibility to configure partial instrumentation. This could help the fuzzer concentrate on the important part as well as have a coverage that is only on what we find interesting.
The text was updated successfully, but these errors were encountered: