tree: d6319188551fbbfb06d2cd8e1026c120d38e354e [path history] [tgz]
  1. afl-analyze.c
  2. afl-as.c
  3. afl-cc.c
  4. afl-common.c
  5. afl-forkserver.c
  6. afl-fuzz-bitmap.c
  7. afl-fuzz-cmplog.c
  8. afl-fuzz-extras.c
  9. afl-fuzz-init.c
  10. afl-fuzz-mutators.c
  11. afl-fuzz-one.c
  12. afl-fuzz-python.c
  13. afl-fuzz-queue.c
  14. afl-fuzz-redqueen.c
  15. afl-fuzz-run.c
  16. afl-fuzz-state.c
  17. afl-fuzz-stats.c
  18. afl-fuzz-statsd.c
  19. afl-fuzz.c
  20. afl-gotcpu.c
  21. afl-ld-lto.c
  22. afl-performance.c
  23. afl-sharedmem.c
  24. afl-showmap.c
  25. afl-tmin.c
  26. README.md
src/README.md

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