| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Fuzz Introspector was reporting a high percentage of fuzz blockers in the `fuzz_diff` test. This means the fuzzing engine was unable to gain visibility into functions lower in the call stack than the blocking functions, making it less effective at producing interesting input data. This clears a large percentage of the fuzz blockers by adding fuzzer instrumentation to them via the `@atheris.instrument_func` decorator.
There was a problem hiding this comment.
Thanks a million! This looks like a tiny change for massive gains.
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Fuzz Introspector was reporting a high percentage of fuzz blockers in the fuzz_diff test. This means the fuzzing engine was unable to gain visibility into functions lower in the call stack than the blocking functions, making it less effective at producing interesting input data.
This clears a large percentage of the fuzz blockers by adding fuzzer instrumentation to them via the @atheris.instrument_func decorator.
Fuzz Introspector Before & After Screenshots
Before