about summary refs log tree commit diff
path: root/src/afl-fuzz-one.c
AgeCommit message (Collapse)Author
2023-04-08show custom mutator name in UIvanhauser-thc
2023-03-31nitsvanhauser-thc
2023-03-28nitsvanhauser-thc
2023-02-21Merge pull request #1651 from AFLplusplus/devvan Hauser
Dev
2023-02-21nitvanhauser-thc
2023-02-21fix regressionvanhauser-thc
2023-02-15debug outputvanhauser-thc
2023-02-07Increase fuzz_level for mopt_common_fuzzingDaniil Kutz
Change performance score calculation for lin and quad power schedules
2023-02-06fixesvanhauser-thc
2023-02-01fixvanhauser-thc
2023-01-25cmplog decision updatesvanhauser-thc
2023-01-19lots of fixesvanhauser-thc
2023-01-18autotoken: splicing; splice_optoutvanhauser-thc
2023-01-16nitsvanhauser-thc
2023-01-03welcome 2023vanhauser-thc
2022-12-20hide queue introspection behind definevanhauser-thc
2022-11-18write queue statisticsvanhauser-thc
2022-07-12clang format 14vanhauser-thc
2022-06-10Fix Byte Decrement Havoc MutationTobias Scharnowski
While looking at the source code of the havoc mutations I realized that there seems to be a typo / copy+paste error with the SUBBYTE_ mutation. It is currently incrementing, instead of decrementing the value. Alternative Fix: Change the documentation to "/* Decrease byte by minus 1. */" to make it work as documented :-P
2022-05-10fix effector map calculationvanhauser-thc
2022-05-09fixvanhauser-thc
2022-05-02fixvanhauser-thc
2022-05-02fix mopt random selectionvanhauser-thc
2022-05-02fix token usage in normal and MOpt modevanhauser-thc
2022-01-13fix skipping unfavored fuzzed entriesvanhauser-thc
2022-01-01welcome 2022vanhauser-thc
2021-12-27more havocvanhauser-thc
2021-12-11rename active_pathsyuawn
2021-12-09more renamevanhauser-thc
2021-12-09rename pathvanhauser-thc
2021-11-07Merge pull request #1141 from AFLplusplus/afl4van Hauser
cmplog enhancement variant
2021-11-06http->httpsvanhauser-thc
2021-10-17new rtn cmplog: instrumentation side + supporting functionsvanhauser-thc
2021-07-25remove unused codeyuawn
2021-07-23handle single seed with perf_score 0vanhauser-thc
2021-07-15fixed potential UAF with custom mutator havoc on reallocMichael Rodler
2021-07-14fix havoc comments (#1020)yuan
2021-06-27Select (#995)van Hauser
* favor unfuzzed * fix * reinit table after a new fuzz
2021-06-14little inlinevanhauser-thc
2021-06-01threadsafe doc fixes, code formatvanhauser-thc
2021-05-11fix a few cur_time usesvanhauser-thc
2021-05-07Fix 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-30fixed potential double free in custom trim (#881)Dominik Maier
2021-04-14update havocvanhauser-thc
2021-03-27add introspectionvanhauser-thc
2021-03-27restructure havocvanhauser-thc
2021-03-24fix counting favoritesvanhauser-thc
2021-02-01import cmplog optsvan Hauser
2021-01-31fix -Z, remove q->nextaflpp
2021-01-30added AFL_CMPLOG_ONLY_NEW featurevan Hauser