about summary refs log tree commit diff
path: root/examples/custom_mutators/example.c
AgeCommit message (Collapse)Author
2020-04-01fixed exampleDominik Maier
2020-04-01Fix heap allocation bugh1994st
- Reason: `afl->out_size` is not consistent with the actual allocation of `afl->out_buf`. The deleted line in `src/afl-fuzz-one.c` may change `afl->out_size`, but `afl->out_buf` is not changed
2020-04-01Fix invalid memory access bug in `afl_custom_pre_save` of example.ch1994st
2020-04-01code formatDominik Maier
2020-04-01error handling for custom mutatorsDominik Maier
2020-04-01tiny changes in custom mut apiDominik Maier
2020-04-01more custom mutator remodellingDominik Maier
2020-04-01code formatDominik Maier
2020-03-27example fixedDominik Maier
2020-03-27docuDominik Maier
2020-03-27more apiDominik Maier
2020-03-27edited custom mutator pre_save apiDominik Maier
2020-03-27code formatDominik Maier
2020-03-23custom mutators might work again like thisDominik Maier
2020-03-23surgical_havoc_mutate() in custom mutator helpersAndrea Fioraldi
2020-03-09more code formatvan Hauser
2020-03-07Add two new hooks for the custom mutatorh1994st
- `afl_custom_queue_get` and `afl_custom_queue_new_entry` - Update the corresponding document and examples
2020-03-07custom havoc mutationAndrea Fioraldi
2020-03-06Fixing 2 little mistakesAntonio Morales
This example doesn't compile due to two little errors: - There is a missing semicolon - "data" array doesn't exist. I think "buf" should be used instead.
2020-03-04Update examples of the custom mutatorh1994st
- Merge `examples/python_mutators` into `examples/custom_mutators` - Remove `examples/python_mutators` - Update existing examples to demonstrate new APIs