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). |
Beta Was this translation helpful? Give feedback.
-
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? |
Beta Was this translation helpful? Give feedback.
-
Hi,
I have some fuzzing projects where I want to use a
FuzzedDataProvider
to 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
FuzzedDataProvider
means 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
?Beta Was this translation helpful? Give feedback.
All reactions