-
Notifications
You must be signed in to change notification settings - Fork 124
Open
Description
We want to mutate a particular string field in a proto message with some specific values.
We have considered following approaches but none of them suits best here:
- Using dictionary to add those specific string values. But issue here is that fuzzer will use dictionary values to mutate all protobuf string fields not just this specific field, so this might not be good for fuzzers mutations?
- Using post-processing mutations which is ideally meant to not modify good messages. We can use this in some hacky way to insert specific string values at the time of mutation but not while running inputs from corpus. But post-processing mutations is not meant to do this.
So what would be best approach in this case, should libprotobuf-mutator
provide custom mutators for protobuf message.
P.S: We need this due to libfuzzer's limitation in tracing CMP instructions due to which it's not able to use various string values present in our codebase in it's mutations, explained in detail here
Metadata
Metadata
Assignees
Labels
No labels