Experiment with longer fuzzing runs for in-process fuzzers
See original GitHub issueRight now we’re doing 4 consecutive fuzzing runs up to 1hr each. That 1hr includes 10 minutes for corpus merging + some other workload, so we’re actually fuzzing up to 44 minutes (-max_total_time=2650
).
Let’s do one 3hr fuzzing run, allocate up to 40 minutes for corpus merging, and the rest for other necessary stuff.
One benefit that we’ve discussed many times is that we’ll be spending less time on reading the corpus on the fuzzer startup.
Another one is to minimize the number of fuzz targets that are timing our during the corpus mergning (e.g. https://bugs.chromium.org/p/chromium/issues/detail?id=927447).
If we could add this as a strategy, we would have some way to evaluate the impact, right? //cc @mbarbella-chromium
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (1 by maintainers)
Top Results From Across the Web
Evaluating Fuzz Testing - arXiv
A fuzz tester (or fuzzer) is a tool that iteratively and randomly gener- ates inputs with which it tests a target program. Despite...
Read more >Introducing probabilities within grey-box fuzzing - DiVA
utilize long-running fuzzing in order to detect vulnerabilities before malicious parties do. These fuzzing setups are running at a large scale in order...
Read more >Assignment 4
You should again run the fuzzer for at least 4 hours. For fuzzers based on american fuzzy lop, curating the initial set of...
Read more >FuZZan: Efficient Sanitizer Metadata Design for Fuzzing
These works address fuzzers and sani- tizers in isolation, ignoring the core sanitizer design decision to optimize for long running test cases using...
Read more >Super Awesome Fuzzing, Part One - F-Secure Blog
To create fuzz test cases, a typical fuzzer will either mutate existing sample inputs, ... As libFuzzer runs in-process, if a bug is...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Started experiment on OSS-Fuzz. Switched from 4800 (1hr+1200secmerge) to 8400 (2hr+1200secmerge) on July 13 (later in day). Tracking data studio graphs show positive increase on new edges, new features and new units graph. Will let it continue for a day to two, and then try increasing it more.
Lets wait on the outliers part to be fixed in datastudio graphs, then we can gauge impact correctly!