about summary refs log tree commit diff
path: root/src/afl-common.c
AgeCommit message (Collapse)Author
2024-02-032024 v4.10c releasevanhauser-thc
2023-11-06fix lsan fixvanhauser-thc
2023-11-04fix of fix: make sure ASAN_OPTIONS and LSAN_OPTIONS agree on leak detectionhexcoder-
2023-11-04copy 'detect_leaks=0' from ASAN to LSANhexcoder
fix for issue #1733, set "detect_leaks=0" when ASAN_OPTIONS contains it and LSAN_OPTIONS are not set.
2023-07-13Update afl-common.c typohexcoder
2023-07-10nitsvanhauser-thc
2023-07-02no_ui: display timevanhauser-thc
2023-05-18symqemu mutator optionsvanhauser-thc
2023-04-16hidden -Y option for nyx, code formatvanhauser-thc
2023-04-16remove redundant access() callSergej Schumilo
2023-04-16fix remove_nyx_tmp_workdir functionSergej Schumilo
2023-04-14add Nyx support in various tools (like afl-cmin)Sergej Schumilo
2023-03-09various fixesvanhauser-thc
2023-03-09fix attempt at lsanvanhauser-thc
2023-01-26better asan defaults everwherevanhauser-thc
2023-01-03welcome 2023vanhauser-thc
2022-10-29fix fork server kill signals for qemu, unicorn and nyx modevanhauser-thc
2022-10-24changelog updatevanhauser-thc
2022-10-24AFL_FORK_SERVER_KILL_SIGNAL backwards compatiblityNils Bars
If `AFL_KILL_SIGNAL` is set, `AFL_FORK_SERVER_KILL_SIGNAL` is set to the same value.
2022-10-21Add AFL_FORK_SERVER_KILL_SIGNAL environment variable.Nils Bars
The AFL_FORK_SERVER_KILL_SIGNAL variable allows to configure the signal used to kill the fork server on termination.
2022-07-12clang format 14vanhauser-thc
2022-06-20nitsvanhauser-thc
2022-06-18clarityRuben ten Hove
2022-06-18formattingRuben ten Hove
2022-06-18check for empty env var as wellRuben ten Hove
2022-03-21fix early return in AFL_TARGET_ENVfuzzah
2022-02-08reintroduce AFL_PERSISTENT and AFL_DEFER_FORKSRVvanhauser-thc
2022-02-05force persistent and deferred also for toolsvanhauser-thc
2022-01-01welcome 2022vanhauser-thc
2021-12-25nitsvanhauser-thc
2021-11-11Add initial CoreSight mode supportAkira Moroo
The original code is: https://github.com/RICSecLab/AFLplusplus-cs/tree/retrage/coresight-mode-pr Signed-off-by: Akira Moroo <retrage01@gmail.com>
2021-11-06http->httpsvanhauser-thc
2021-11-03Fix request size & remove redundant code (#1139)yuan
* fix request size * fix null terminator index * remove redundant code
2021-09-07add check_binary_signatures for afl-* utilsvanhauser-thc
2021-06-11fix cmplog screen update crashvanhauser-thc
2021-06-01fixesvanhauser-thc
2021-05-22turn off map size detection if skip_bin_check is setvanhauser-thc
2021-03-25integrate frida_mode, code-formatvanhauser-thc
2021-03-24support libraries for find_afl_binaryvanhauser-thc
2021-03-24Merge pull request #817 from realmadsci/atat-plusplusvan Hauser
Make @@ handling more flexible
2021-03-23make setting different file permissions easy via config.hvanhauser-thc
2021-03-23fixed tiny nitpicksDominik Maier
2021-03-19Merge branch 'dev' into devvan Hauser
2021-03-20add AFL_TARGET_ENV to afl-fuzzfuzzah
2021-03-19refactor finding binariesvanhauser-thc
2021-03-17shmem map size in config.hvanhauser-thc
2021-03-17Merge branch 'dev' into atat-plusplushexcoder
2021-03-16fix cmplog rtnvanhauser-thc
2021-03-16Merge pull request #819 from realmadsci/qemu-consistent-preloadAndrea Fioraldi
Remove AFL_PRELOAD and AFL_USE_QASAN handlers
2021-03-15Remove AFL_PRELOAD and AFL_USE_QASAN handlersrealmadsci
These are now processed in afl-qemu-trace so that the "copy+paste" code that is in all of the other AFL tools can be removed. This also allows the AFL_USE_QASAN flag to work the same when used with tools like afl-fuzz as it does with afl-qemu-trace. This is important in situations where loading the QASAN library changes the address of your desired entrypoint, or for crash validation using the same environment that afl-fuzz was using. With this change, the same set of environment variables can be used in exactly the same way between afl-fuzz, afl-showmap, and afl-qemu-trace, and you will get exactly the same guest environment.