about summary refs log tree commit diff
path: root/src/afl-fuzz-python.c
AgeCommit message (Collapse)Author
2020-12-04added python mutator, documentationDominik Maier
2020-11-18Use buffer protocol to retrieve result from python post_process (#605)Dustin Spicuzza
Saves an extra copy, gives post processing functions more flexibility
2020-11-18fixed alloc errors, code formatDominik Maier
2020-11-14Actually make python 'fuzz' method optionalDustin Spicuzza
At some point mutator->afl_custom_fuzz was allowed to be NULL, so do that instead of crashing
2020-11-13more small fixeshexcoder-
2020-11-10support custom mutator introspectionvan Hauser
2020-08-24make py functions as optional as they are in the docvan Hauser
2020-08-24fix python implementation for new functionvan Hauser
2020-08-24added afl_custom_fuzz_countvan Hauser
2020-08-18Reworked maybe_grow to take a single ptr, renamed to afl_realloc (#505)Dominik Maier
* maybe_grow takes a single ptr * fixed use_deflate * reworked maybe_grow_bufsize * helper to access underlying buf * remove redundant realloc_block * code format * fixes * added unit tests * renamed maybe_grow to afl_realloc * BUF_PARAMS -> AFL_BUF_PARAM
2020-08-07enabled Wextra, fixed bugsDominik Maier
2020-05-13code-format and slight -S/-M modificationsvan Hauser
2020-05-13Fix previous commit bugsrish9101
2020-05-13Add post library API as custom mutator and rename pre_saverish9101
2020-05-12enforce mandatary custom functionsvan Hauser
2020-05-12new code formatting + appliedvan Hauser
2020-05-10indenting preprocessor directives breaks compilation and cant be fixed, ↵van Hauser
reverting ... :-(
2020-05-10fix warning, code formatvan Hauser
2020-05-09custom mutator code enhancements and code-formatvan Hauser
2020-05-08Support multiple custom mutators (#282)Rishi Ranjan
* Make a list of custom mutators using env variable * Set up multiple custom mutators * Add destroy custom mutator and changes to load_custom_mutator * Use array instead of list, make changes to afl-fuzz-one for multiple mutators * Make change to fuzz-one custom_queue_get to support multiple mutators * Modify custom python mutator support * Fix bug * Fix missing afl->mutator->data * Revert to list with max count * Change custom_pre_save hook and code format * Free custom_mutator struct in the list * Add testcase for multiple custom mutators * Resolve merge conflict
2020-04-19clang-tidy readability-braces (#323)Dominik Maier
2020-04-17fix plot_data output and code-formatvan Hauser
2020-04-16hunting non-static functionsDominik Maier
2020-04-01python mutator: fix nullptr for python mutator datah1994st
2020-04-01Fix invalid memory access bug in `afl_custom_pre_save` of example.ch1994st
2020-04-01error handling for custom mutatorsDominik Maier
2020-04-01tiny changes in custom mut apiDominik Maier
2020-04-01alloc-inl.h/ck_maybe_grow() back to size_t, reimplement overflow checkhexcoder-
2020-04-01more custom mutator remodellingDominik 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-11honor afl_quiet on env var checks + code-formatvan Hauser
2020-03-10unified pointer placementDominik Maier
2020-03-09code-formatvan Hauser
2020-03-09AFL without globals (#220)Dominik Maier
* moved globals to afl, shm and fsrv * moved argv to afl state, less bugs * fixed unicorn docu * lists everywhere * merged custom mutators * fixed leaks in afl-fuzz
2020-03-09more code formatvan Hauser
2020-03-08fix null ptr deferef in pre_save python mutator callAndrea Fioraldi
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-03Finish refactoring APIs for the custom mutator and Python moduleh1994st
- Remove AFL_PYTHON_ONLY (env) and python_only (variable) - Unify fuzz API of the custom mutator and Python module - Merge the custom mutator into the old python_stage, which is now renamed to custom_mutator_stage
2020-03-02Refactoring `fuzz_py` APIh1994st
2020-03-02Add initialization funcation wrapper for Python mutatorh1994st
2020-03-02Uniform API for both Python and custom mutatorh1994st
2020-03-02Add new APIs for the custom mutatorh1994st
2020-02-21block the usage of mopt with optionals mutators (redqueen/radamsa/etc...)Andrea Fioraldi
2020-01-20fixed Heiko's global search-replace :)van Hauser
2019-12-31v2.60d and year 2020 initvan Hauser
2019-12-28code formatvan Hauser