• Home
Name Date Size #Lines LOC

..--

README.mdD06-Sep-20241.4 KiB3027

afl-analyze.cD06-Sep-202424.9 KiB1,137663

afl-as.cD06-Sep-202418.2 KiB672308

afl-cc.cD06-Sep-202488.4 KiB3,4722,039

afl-common.cD06-Sep-202431 KiB1,463761

afl-forkserver.cD06-Sep-202449.7 KiB1,8841,127

afl-fuzz-bitmap.cD06-Sep-202421.7 KiB894452

afl-fuzz-cmplog.cD06-Sep-20242.1 KiB10138

afl-fuzz-extras.cD06-Sep-202417.2 KiB830419

afl-fuzz-init.cD06-Sep-202474.7 KiB3,1511,772

afl-fuzz-mutators.cD06-Sep-202415.8 KiB657334

afl-fuzz-one.cD06-Sep-2024161.4 KiB6,2213,450

afl-fuzz-python.cD06-Sep-202421.4 KiB1,033608

afl-fuzz-queue.cD06-Sep-202435 KiB1,476760

afl-fuzz-redqueen.cD06-Sep-202471.4 KiB3,2351,914

afl-fuzz-run.cD06-Sep-202426 KiB1,108557

afl-fuzz-skipdet.cD06-Sep-20249 KiB404204

afl-fuzz-state.cD06-Sep-202423.7 KiB773459

afl-fuzz-stats.cD06-Sep-202468.8 KiB2,4381,465

afl-fuzz-statsd.cD06-Sep-20249.5 KiB276174

afl-fuzz.cD06-Sep-202481.9 KiB3,0861,921

afl-gotcpu.cD06-Sep-20248.1 KiB335182

afl-ld-lto.cD06-Sep-20248.9 KiB364226

afl-performance.cD06-Sep-20241.9 KiB9055

afl-sharedmem.cD06-Sep-20248.6 KiB368188

afl-showmap.cD06-Sep-202440.6 KiB1,8151,063

afl-tmin.cD06-Sep-202431.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