Replies: 2 comments 4 replies
|
This is a problem that is more or less inherent to the design of Instead, we are working on a new mutator that operates directly on the parameter types of your fuzz test (see https://github.com/CodeIntelligenceTesting/jazzer/blob/main/tests/src/test/java/com/example/ExperimentalMutatorFuzzer.java for an example). |
0 replies
|
Thanks for the explanation! Is there a way to programmatically create the matching binary by kind of doing the "reverse" to the "consume" actions to produce binary files suitable as initial corpus? |
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi,
I have some fuzzing projects where I want to use a
FuzzedDataProviderto allow fuzzing to vary the code-paths fully by using all sorts of combinations of options.The code parses some string-input where I would like to ensure that none of the possible inputs causes issues in the code.
However using
FuzzedDataProvidermeans that corpus documents have a binary format, so I would expect that simply providing an initial corpus of strings as simple input documents is not working.If this is the case, is there a way to provide a good initial corpus for some of the strings that are returned in the various method-calls to
FuzzedDataProvider?All reactions