Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
README.md | H A D | 25-Apr-2025 | 1.4 KiB | 30 | 27 | |
afl-analyze.c | H A D | 25-Apr-2025 | 24.9 KiB | 1,137 | 663 | |
afl-as.c | H A D | 25-Apr-2025 | 18.2 KiB | 672 | 308 | |
afl-cc.c | H A D | 25-Apr-2025 | 88.4 KiB | 3,472 | 2,039 | |
afl-common.c | H A D | 25-Apr-2025 | 31 KiB | 1,463 | 761 | |
afl-forkserver.c | H A D | 25-Apr-2025 | 49.7 KiB | 1,884 | 1,127 | |
afl-fuzz-bitmap.c | H A D | 25-Apr-2025 | 21.7 KiB | 894 | 452 | |
afl-fuzz-cmplog.c | H A D | 25-Apr-2025 | 2.1 KiB | 101 | 38 | |
afl-fuzz-extras.c | H A D | 25-Apr-2025 | 17.2 KiB | 830 | 419 | |
afl-fuzz-init.c | H A D | 25-Apr-2025 | 74.7 KiB | 3,151 | 1,772 | |
afl-fuzz-mutators.c | H A D | 25-Apr-2025 | 15.8 KiB | 657 | 334 | |
afl-fuzz-one.c | H A D | 25-Apr-2025 | 161.4 KiB | 6,221 | 3,450 | |
afl-fuzz-python.c | H A D | 25-Apr-2025 | 21.4 KiB | 1,033 | 608 | |
afl-fuzz-queue.c | H A D | 25-Apr-2025 | 35 KiB | 1,476 | 760 | |
afl-fuzz-redqueen.c | H A D | 25-Apr-2025 | 71.4 KiB | 3,235 | 1,914 | |
afl-fuzz-run.c | H A D | 25-Apr-2025 | 26 KiB | 1,108 | 557 | |
afl-fuzz-skipdet.c | H A D | 25-Apr-2025 | 9 KiB | 404 | 204 | |
afl-fuzz-state.c | H A D | 25-Apr-2025 | 23.7 KiB | 773 | 459 | |
afl-fuzz-stats.c | H A D | 25-Apr-2025 | 68.8 KiB | 2,438 | 1,465 | |
afl-fuzz-statsd.c | H A D | 25-Apr-2025 | 9.5 KiB | 276 | 174 | |
afl-fuzz.c | H A D | 25-Apr-2025 | 81.9 KiB | 3,086 | 1,921 | |
afl-gotcpu.c | H A D | 25-Apr-2025 | 8.1 KiB | 335 | 182 | |
afl-ld-lto.c | H A D | 25-Apr-2025 | 8.9 KiB | 364 | 226 | |
afl-performance.c | H A D | 25-Apr-2025 | 1.9 KiB | 90 | 55 | |
afl-sharedmem.c | H A D | 25-Apr-2025 | 8.6 KiB | 368 | 188 | |
afl-showmap.c | H A D | 25-Apr-2025 | 40.6 KiB | 1,815 | 1,063 | |
afl-tmin.c | H A D | 25-Apr-2025 | 31.1 KiB | 1,339 | 776 |
README.md
1# Source Folder 2 3Quick explanation about the files here: 4 5- `afl-analyze.c` - afl-analyze binary tool 6- `afl-as.c` - afl-as binary tool 7- `afl-cc.c` - afl-cc binary tool 8- `afl-common.c` - common functions, used by afl-analyze, afl-fuzz, afl-showmap and afl-tmin 9- `afl-forkserver.c` - forkserver implementation, used by afl-fuzz afl-showmap, afl-tmin 10- `afl-fuzz-bitmap.c` - afl-fuzz bitmap handling 11- `afl-fuzz.c` - afl-fuzz binary tool (just main() and usage()) 12- `afl-fuzz-cmplog.c` - afl-fuzz cmplog functions 13- `afl-fuzz-extras.c` - afl-fuzz the *extra* function calls 14- `afl-fuzz-init.c` - afl-fuzz initialization 15- `afl-fuzz-misc.c` - afl-fuzz misc functions 16- `afl-fuzz-mutators.c` - afl-fuzz custom mutator and python support 17- `afl-fuzz-one.c` - afl-fuzz fuzzer_one big loop, this is where the mutation is happening 18- `afl-fuzz-performance.c` - hash64 and rand functions 19- `afl-fuzz-python.c` - afl-fuzz the python mutator extension 20- `afl-fuzz-queue.c` - afl-fuzz handling the queue 21- `afl-fuzz-redqueen.c` - afl-fuzz redqueen implementation 22- `afl-fuzz-run.c` - afl-fuzz running the target 23- `afl-fuzz-state.c` - afl-fuzz state and globals 24- `afl-fuzz-stats.c` - afl-fuzz writing the statistics file 25- `afl-gotcpu.c` - afl-gotcpu binary tool 26- `afl-ld-lto.c` - LTO linker helper 27- `afl-sharedmem.c` - sharedmem implementation, used by afl-fuzz, afl-showmap, afl-tmin 28- `afl-showmap.c` - afl-showmap binary tool 29- `afl-tmin.c` - afl-tmin binary tool 30