Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-07-20 | Merge pull request #1034 from AFLplusplus/grammatron | van Hauser | |
Grammatron | |||
2021-07-15 | fix custom trimming | vanhauser-thc | |
2021-07-15 | fix "fix" | vanhauser-thc | |
2021-07-11 | update custom trim | vanhauser-thc | |
2021-07-09 | more fixes | vanhauser-thc | |
2021-05-10 | code-format | vanhauser-thc | |
2021-05-07 | Fix memory errors when trim causes testcase growth (#881) (#903) | realmadsci | |
* Revert "fixed potential double free in custom trim (#881)" This reverts commit e9d2f72382cab75832721d859c3e731da071435d. * Revert "fix custom trim for increasing data" This reverts commit 86a8ef168dda766d2f25f15c15c4d3ecf21d0667. * Fix memory errors when trim causes testcase growth Modify trim_case_custom to avoid writing into in_buf because some custom mutators can cause the testcase to grow rather than shrink. Instead of modifying in_buf directly, we write the update out to the disk when trimming is complete, and then the caller is responsible for refreshing the in-memory buffer from the file. This is still a bit sketchy because it does need to modify q->len in order to notify the upper layers that something changed, and it could end up telling upper layer code that the q->len is *bigger* than the buffer (q->testcase_buf) that contains it, which is asking for trouble down the line somewhere... * Fix an unlikely situation Put back some `unlikely()` calls that were in the e9d2f72382cab75832721d859c3e731da071435d commit that was reverted. | |||
2021-04-30 | fixed potential double free in custom trim (#881) | Dominik Maier | |
2021-04-19 | fix custom trim for increasing data | vanhauser-thc | |
2021-03-23 | make setting different file permissions easy via config.h | vanhauser-thc | |
2021-01-20 | android: Fix runtime for mutator | Joey Jiao | |
2021-01-04 | code format | van Hauser | |
2021-01-04 | code cleanups (shadowed vars, (un)signed type mismatches, format types, etc.) | hexcoder- | |
2020-12-04 | afl_custom_describe api added | Dominik Maier | |
2020-11-10 | support custom mutator introspection | van Hauser | |
2020-09-08 | update instrumenation/README.instrument_file.md for gcc_plugin | van Hauser | |
2020-08-24 | added afl_custom_fuzz_count | van Hauser | |
2020-08-18 | Reworked 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-08 | Add support for specific custom mutator name | murx- | |
2020-07-31 | less gotos | Dominik Maier | |
2020-07-28 | allow custom mut with mopt if -L is -1 | Andrea Fioraldi | |
2020-07-26 | add last 60s exec/s stat | van Hauser | |
2020-07-26 | Fix typo for afl_custom_deinit (#470) | HAPPY | |
2020-07-22 | Allow the custom mutator to generate larger trimmed data (#463) | Shengtuo Hu | |
2020-07-20 | debug test for rng | van Hauser | |
2020-07-18 | Skip the empty test case generated by the custom trimming | h1994st | |
2020-06-25 | remove radamsa, add radamsa custom mutator | van Hauser | |
2020-06-12 | switch to faster and better hash + random | van Hauser | |
2020-05-15 | removed overlooked post_lib references, added post_lib examples to ↵ | van Hauser | |
examples/custom_mutators | |||
2020-05-13 | code-format and slight -S/-M modifications | van Hauser | |
2020-05-13 | Add post library API as custom mutator and rename pre_save | rish9101 | |
2020-05-12 | enforce mandatary custom functions | van Hauser | |
2020-05-12 | fix custom mutators and add real test cases | van Hauser | |
2020-05-09 | custom mutator code enhancements and code-format | van Hauser | |
2020-05-08 | Support 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-20 | code format | Dominik Maier | |
2020-04-19 | clang-tidy readability-braces (#323) | Dominik Maier | |
2020-04-16 | libradamsa fix | Dominik Maier | |
2020-04-16 | renamed duplicated func names | Dominik Maier | |
2020-04-14 | unified forkservered run_target, fixes #308 | Dominik Maier | |
2020-04-11 | more refactoring and update changelog | van Hauser | |
2020-04-11 | refactored cmplog | Dominik Maier | |
2020-04-10 | LTO optimization, variable map size, autodictionary (#307) | van Hauser | |
* lto module clean-up * step 1/3 * step 1/3 completed * if tmp is ever made non-static * parts 2 and 3 - autodictionary is complete * variable map_size support * variable map size: changed overlooked functions * remove debug for autodict * 64 bit alignment of map size * fix review comments * force 64 bit alignment on both sides * typo | |||
2020-04-01 | code format | Dominik Maier | |
2020-04-01 | rebase | Dominik Maier | |
2020-04-01 | code format | Dominik Maier | |
2020-04-01 | error handling for custom mutators | Dominik Maier | |
2020-04-01 | tiny changes in custom mut api | Dominik Maier | |
2020-04-01 | more custom mutator remodelling | Dominik Maier | |
2020-04-01 | added nullptr fix by h1994st | Dominik Maier | |