Name Date Size #Lines LOC

..--

README.mdH A D25-Apr-20251.4 KiB3027

afl-analyze.cH A D25-Apr-202524.9 KiB1,137663

afl-as.cH A D25-Apr-202518.2 KiB672308

afl-cc.cH A D25-Apr-202588.4 KiB3,4722,039

afl-common.cH A D25-Apr-202531 KiB1,463761

afl-forkserver.cH A D25-Apr-202549.7 KiB1,8841,127

afl-fuzz-bitmap.cH A D25-Apr-202521.7 KiB894452

afl-fuzz-cmplog.cH A D25-Apr-20252.1 KiB10138

afl-fuzz-extras.cH A D25-Apr-202517.2 KiB830419

afl-fuzz-init.cH A D25-Apr-202574.7 KiB3,1511,772

afl-fuzz-mutators.cH A D25-Apr-202515.8 KiB657334

afl-fuzz-one.cH A D25-Apr-2025161.4 KiB6,2213,450

afl-fuzz-python.cH A D25-Apr-202521.4 KiB1,033608

afl-fuzz-queue.cH A D25-Apr-202535 KiB1,476760

afl-fuzz-redqueen.cH A D25-Apr-202571.4 KiB3,2351,914

afl-fuzz-run.cH A D25-Apr-202526 KiB1,108557

afl-fuzz-skipdet.cH A D25-Apr-20259 KiB404204

afl-fuzz-state.cH A D25-Apr-202523.7 KiB773459

afl-fuzz-stats.cH A D25-Apr-202568.8 KiB2,4381,465

afl-fuzz-statsd.cH A D25-Apr-20259.5 KiB276174

afl-fuzz.cH A D25-Apr-202581.9 KiB3,0861,921

afl-gotcpu.cH A D25-Apr-20258.1 KiB335182

afl-ld-lto.cH A D25-Apr-20258.9 KiB364226

afl-performance.cH A D25-Apr-20251.9 KiB9055

afl-sharedmem.cH A D25-Apr-20258.6 KiB368188

afl-showmap.cH A D25-Apr-202540.6 KiB1,8151,063

afl-tmin.cH A D25-Apr-202531.1 KiB1,339776

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