about summary refs log tree commit diff
AgeCommit message (Collapse)Author
2024-05-13Merge pull request #2086 from smoelius/devvan Hauser
Add `AFL_SHA1_FILENAMES` option
2024-05-13post_process after trimvanhauser-thc
2024-05-13compcov int fixvanhauser-thc
2024-05-12Add `AFL_SHA1_FILENAMES` optionSamuel Moelius
2024-05-11update unicornvanhauser-thc
2024-05-11update changelogvanhauser-thc
2024-05-11Merge pull request #2083 from elboulangero/i386van Hauser
Re-enable i386
2024-05-11afl-cc: Re-enable i386Arnaud Rebillout
Was disabled in 136febaf6855ac1e04c8ea4ecbcb84eb42de2143 Closes: #2081
2024-05-07stat update during syncingvanhauser-thc
2024-05-02Merge pull request #2076 from louismerlin/fix-whatsup-timevan Hauser
Fix `afl_whatsup` findings timer
2024-05-02Guard /proc/uptime cat with a uname checkLouis Merlin
2024-05-02Fix CUR_TIME computationLouis Merlin
2024-05-02AFL_DISABLE_REDUNDANTvanhauser-thc
2024-04-30try enhanced asan supportvanhauser-thc
2024-04-29Merge pull request #2074 from Kiprey/patch-2van Hauser
Fix wrong warning in SanitizerCoverageLTO.so.cc
2024-04-29Fix wrong warning in SanitizerCoverageLTO.so.ccKiprey
2024-04-28update qemuaflvanhauser-thc
2024-04-28Merge pull request #2073 from Acture/devvan Hauser
Fix: Removed the redundant `id` field from redqueen.c
2024-04-28Bug fix: Removed the redundant `id` field from the debug output in the ↵acture
afl-fuzz-redqueen.c file since cmp_header no longer have this field.
2024-04-26changesvanhauser-thc
2024-04-26work with spaces in filenamesvanhauser-thc
2024-04-26Merge pull request #2066 from ahuo1/devvan Hauser
fix: initialize n_fuzz_entry in perform_dry_run.
2024-04-26add schedule check.Yiyi Wang
2024-04-25fix: initialize n_fuzz_entry in perform_dry_run.Yiyi Wang
2024-04-25fix AFL_PERSISTENT_RECORDvanhauser-thc
2024-04-19LTO fixvanhauser-thc
2024-04-19nitsvanhauser-thc
2024-04-18Merge pull request #2061 from jschwartzentruber/change_smm_visvan Hauser
Specify shared memory visibility
2024-04-17Set explicit visibility on shared memory variables.Jesse Schwartzentruber
2024-04-17Merge pull request #2059 from elboulangero/afl-gccvan Hauser
Fix afl-gcc
2024-04-17afl-cc: Complete fix for afl-asSonic
Look for afl-as, and then make sure that there's a 'as' binary in the same directory, that seems to be either a symlink to, or a copy of, afl-as.
2024-04-17afl-cc: Use afl-as (rather than as) to find obj pathArnaud Rebillout
2024-04-17afl-cc: Add missing debug statementArnaud Rebillout
For each path that is tried, there's a debug log printed, _except_ for this one. Fix it.
2024-04-13v4.21 initvanhauser-thc
2024-04-13Merge pull request #2027 from choller/nyx-handler-fixvan Hauser
Add optional handling of Nyx InvalidWriteToPayload event
2024-04-13v4.20cvanhauser-thc
2024-04-12Merge pull request #2051 from Phasip/patch-1van Hauser
Clarify that oss-fuzz doesn't randomize builds anymore
2024-04-12Clarify that oss-fuzz doesn't randomize builds anymorePasi Saarinen
2024-04-11fix syncing with custom mutatorvanhauser-thc
2024-04-09fix shared memory test casesvanhauser-thc
2024-04-09fix -V, code formatvanhauser-thc
2024-04-09Merge pull request #2034 from fbeqv/add_effective_fuzzing_time_trackervan Hauser
Adds stats tracking for time spend actually mutating & running test i…
2024-04-08:Adds stats tracking time spend in calibration/trim/syncCornelius Aschermann
This currently does not affect statsd nor the UI. Only the fuzzer_stats file is updated
2024-04-07fix timevanhauser-thc
2024-04-07code formatvanhauser-thc
2024-04-07fix llvm modulesvanhauser-thc
2024-04-05fix aflpp custom mutator + standalone toolvanhauser-thc
2024-04-03Fixed unicorn_dumper_gdb.py for updated version of gef (#2045)Alex Schmith
Updated unicorn_dumper_gdb.py to support new gef api and replaced deprecated functions . The functions that are not in the new gef api are read_memory(), and current_arch(). Also replaced some deprecated functions with the updated versions of them. replaced read_memory() with GefMemoryManager.read() as read_memory(). read_memory() is in legacy-gef-api replaced current_arch with gef.arch.registers replaced get_process_maps() with gef.memory.maps (just depreacated) replaced get_register() with gef.arch.register()
2024-03-31Merge pull request #2043 from ligurio/ligurio/fix-clock_gettimevan Hauser
src: fix calculation of fuzzing time in statistics
2024-03-31src: fix calculation of fuzzing time in statisticsSergey Bronnikov
When the computer is suspended during a fuzzing session, the time spent in suspended state is counted as a "run time" on a statistics screen. The time returned by `gettimeofday(2)` is affected by discontinuous jumps in the system time. It is better using `clock_gettime(2)`. The patch replace `gettimeofday` with `clock_gettime` [1]. `clock_gettime` uses a CLOCK_MONOTONIC_COARSE clock type, it is faster than CLOCK_MONOTONIC, but still has resolution (~1ms) that is adequate for our purposes. However, CLOCK_MONOTONIC_COARSE is a Linux-specific clock variant, so on macOS it is replaced with CLOCK_MONOTONIC, and with CLOCK_MONOTONIC_FAST on FreeBSD [2]. Closes #1241 1. https://pubs.opengroup.org/onlinepubs/9699919799/functions/clock_gettime.html 2. https://man.freebsd.org/cgi/man.cgi?query=clock_gettime