about summary refs log tree commit diff
path: root/src
AgeCommit message (Collapse)Author
2024-01-18push to stable (#1960)van Hauser
* Output afl-clang-fast stuffs only if necessary (#1912) * afl-cc header * afl-cc common declarations - Add afl-cc-state.c - Strip includes, find_object, debug/be_quiet/have_*/callname setting from afl-cc.c - Use debugf_args in main - Modify execvp stuffs to fit new aflcc struct * afl-cc show usage * afl-cc mode selecting 1. compiler_mode by callname in argv[0] 2. compiler_mode by env "AFL_CC_COMPILER" 3. compiler_mode/instrument_mode by command line options "--afl-..." 4. instrument_mode/compiler_mode by various env vars including "AFL_LLVM_INSTRUMENT" 5. final checking steps 6. print "... - mode: %s-%s\n" 7. determine real argv[0] according to compiler_mode * afl-cc macro defs * afl-cc linking behaviors * afl-cc fsanitize behaviors * afl-cc misc * afl-cc body update * afl-cc all-in-one formated with custom-format.py * nits --------- Co-authored-by: vanhauser-thc <vh@thc.org> * changelog * update grammar mutator * lto llvm 12+ * docs(custom_mutators): fix missing ':' (#1953) * Fix broken LTO mode and response file support (#1948) * Strip `-Wl,-no-undefined` during compilation (#1952) Make the compiler wrapper stripping `-Wl,-no-undefined` in addition to `-Wl,--no-undefined`. Both versions of the flag are accepted by clang and, therefore, used by building systems in the wild (e.g., samba will not build without this fix). * Remove dead code in write_to_testcase (#1955) The custom_mutators_count check in if case is duplicate with if condition. The else case is custom_mutators_count == 0, neither custom_mutator_list iteration nor sent check needed. Signed-off-by: Xeonacid <h.dwwwwww@gmail.com> * update qemuafl * WIP: Add ability to generate drcov trace using QEMU backend (#1956) * Document new drcov QEMU plugin * Add link to lightkeeper for QEMU drcov file loading --------- Co-authored-by: Jean-Romain Garnier <jean-romain.garnier@airbus.com> * code format * changelog * sleep on uid != 0 afl-system-config * fix segv about skip_next, warn on unsupported cases of linking options (#1958) * todos * ensure afl-cc only allows available compiler modes * update grammar mutator * disable aslr on apple * fix for arm64 --------- Signed-off-by: Xeonacid <h.dwwwwww@gmail.com> Co-authored-by: Sonic <50692172+SonicStark@users.noreply.github.com> Co-authored-by: Xeonacid <h.dwwwwww@gmail.com> Co-authored-by: Nils Bars <nils.bars@rub.de> Co-authored-by: Jean-Romain Garnier <7504819+JRomainG@users.noreply.github.com> Co-authored-by: Jean-Romain Garnier <jean-romain.garnier@airbus.com>
2023-12-30finish injection implementationvanhauser-thc
2023-12-27inject docsvanhauser-thc
2023-12-27initial simple injection detection supportvanhauser-thc
2023-12-15switch to explore powerschedule as defaultvanhauser-thc
2023-12-10fixvanhauser-thc
2023-12-10add n_fuzz to ignore_timeoutsvanhauser-thc
2023-12-10nitvanhauser-thc
2023-12-07afl-cc fixesvanhauser-thc
2023-12-05fixing -Wl,-rpath=<LLVM_LIBDIR>vincenzo MEZZELA
2023-12-04removing options "-Wl,-rpath" "LLVM_LIBDIR" when using gccvincenzo MEZZELA
2023-12-01Stop hardcoding the path /usr/local/lib/afl in afl-ld-lto.c and respect the ↵Romain Geissler
configured PREFIX.
2023-11-28nitvanhauser-thc
2023-11-28improve cmplogvanhauser-thc
2023-11-28code formatvanhauser-thc
2023-11-28changesvanhauser-thc
2023-11-28Merge pull request #1915 from yangzao/devvan Hauser
add custom mutator function for running script after target gets executed
2023-11-27merge functionyangzao
2023-11-27updateyangzao
2023-11-27format codeyangzao
2023-11-27Merge pull request #1913 from choller/nyx-id-fix-2van Hauser
Pass correct Nyx ID when creating a Nyx runner
2023-11-25update python moduleyangzao
2023-11-24update afl-fuzz-runyangzao
2023-11-24add custom_post_run.cyangzao
2023-11-23mini fixvanhauser-thc
2023-11-22Pass correct Nyx ID when creating a Nyx runnerChristian Holler (:decoder)
2023-11-17Merge pull request #1909 from ifyGecko/quick_fixvan Hauser
missing closing parenthesis
2023-11-16missing closing parenthesisifyGecko
2023-11-16fix inf in statsvanhauser-thc
2023-11-07Merge pull request #1902 from m-carrasco/dev-cm-init-fixvan Hauser
Possible missing initialisation in custom mutator
2023-11-07fix dictionary and cminvanhauser-thc
2023-11-06Add missing initialisation for havoc_queued during the custom mutator's stage.Manuel Carrasco
2023-11-06clang-format 16->17vanhauser-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-11-03Merge branch 'dev' of ssh://github.com/AFLplusplus/AFLplusplus into devvanhauser-thc
2023-11-03add --help/--version/...vanhauser-thc
2023-10-25Merge pull request #1899 from AFLplusplus/scalevan Hauser
Scale encoding
2023-10-25fix scalevanhauser-thc
2023-10-24code formatvanhauser-thc
2023-10-23Add an env to afl-clang-fast to disable setting rpath if LLVM path isn'tJesse Schwartzentruber
recognized
2023-10-23add scale encode mode for cmplogvanhauser-thc
2023-10-20Use proper AFL_NYX_AUX_SIZE for nyx_aux_stringChristian Holler (:decoder)
2023-10-04Make fuzzer_stats update atomiccoco
This writes fuzzer_stats to a temp file and then atomically renames the temp file into fuzzer_stats so that any read on fuzzer_stats will always return a consistent view of the AFL state (otherwise there is a very low change of AFL's write and $tool's reads to race and yield inconsistent results).
2023-10-03Merge pull request #1882 from m4drat/statsd-banner-fixvan Hauser
Use sync_id instead of use_banner while building statsd metric messages
2023-10-03Use sync_id instead of use_banner while building statsd metric messagesTheodor Arsenij
2023-10-03nitsvanhauser-thc
2023-10-02fix addseeds testvanhauser-thc
2023-10-02Merge branch 'dev' of ssh://github.com/AFLplusplus/AFLplusplus into devvanhauser-thc