Files
AFLplusplus/src
coco c622e4c565 Make fuzzer_stats update atomic
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-04 12:44:56 -07:00
..
2023-09-27 16:32:55 +02:00
2023-07-13 13:37:47 +02:00
2023-08-13 10:18:33 +02:00
2023-03-26 12:14:35 +02:00
2023-01-03 09:38:07 +01:00
2023-09-11 14:56:34 +02:00
2023-09-11 14:56:34 +02:00
2023-08-09 17:14:13 +02:00
2023-08-23 18:02:33 +02:00
2023-10-02 15:52:11 +02:00
2023-02-23 11:22:40 +01:00
2023-07-12 16:08:22 +02:00
2023-10-02 14:41:47 +02:00
2023-01-03 09:38:07 +01:00
2022-01-20 20:48:09 +01:00

Source Folder

Quick explanation about the files here:

  • afl-analyze.c - afl-analyze binary tool
  • afl-as.c - afl-as binary tool
  • afl-cc.c - afl-cc binary tool
  • afl-common.c - common functions, used by afl-analyze, afl-fuzz, afl-showmap and afl-tmin
  • afl-forkserver.c - forkserver implementation, used by afl-fuzz afl-showmap, afl-tmin
  • afl-fuzz-bitmap.c - afl-fuzz bitmap handling
  • afl-fuzz.c - afl-fuzz binary tool (just main() and usage())
  • afl-fuzz-cmplog.c - afl-fuzz cmplog functions
  • afl-fuzz-extras.c - afl-fuzz the extra function calls
  • afl-fuzz-init.c - afl-fuzz initialization
  • afl-fuzz-misc.c - afl-fuzz misc functions
  • afl-fuzz-mutators.c - afl-fuzz custom mutator and python support
  • afl-fuzz-one.c - afl-fuzz fuzzer_one big loop, this is where the mutation is happening
  • afl-fuzz-performance.c - hash64 and rand functions
  • afl-fuzz-python.c - afl-fuzz the python mutator extension
  • afl-fuzz-queue.c - afl-fuzz handling the queue
  • afl-fuzz-redqueen.c - afl-fuzz redqueen implementation
  • afl-fuzz-run.c - afl-fuzz running the target
  • afl-fuzz-state.c - afl-fuzz state and globals
  • afl-fuzz-stats.c - afl-fuzz writing the statistics file
  • afl-gotcpu.c - afl-gotcpu binary tool
  • afl-ld-lto.c - LTO linker helper
  • afl-sharedmem.c - sharedmem implementation, used by afl-fuzz, afl-showmap, afl-tmin
  • afl-showmap.c - afl-showmap binary tool
  • afl-tmin.c - afl-tmin binary tool