Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
README.md | D | 03-May-2024 | 1.4 KiB | 30 | 27 | |
afl-analyze.c | D | 03-May-2024 | 25.2 KiB | 1,155 | 675 | |
afl-as.c | D | 03-May-2024 | 17.7 KiB | 658 | 302 | |
afl-cc.c | D | 03-May-2024 | 58.8 KiB | 2,202 | 1,475 | |
afl-common.c | D | 03-May-2024 | 25.8 KiB | 1,247 | 647 | |
afl-forkserver.c | D | 03-May-2024 | 44 KiB | 1,692 | 1,021 | |
afl-fuzz-bitmap.c | D | 03-May-2024 | 20.4 KiB | 825 | 413 | |
afl-fuzz-cmplog.c | D | 03-May-2024 | 1.9 KiB | 88 | 31 | |
afl-fuzz-extras.c | D | 03-May-2024 | 17.2 KiB | 829 | 418 | |
afl-fuzz-init.c | D | 03-May-2024 | 70.1 KiB | 2,961 | 1,647 | |
afl-fuzz-mutators.c | D | 03-May-2024 | 13.9 KiB | 546 | 280 | |
afl-fuzz-one.c | D | 03-May-2024 | 149.1 KiB | 5,736 | 3,118 | |
afl-fuzz-python.c | D | 03-May-2024 | 19.1 KiB | 895 | 532 | |
afl-fuzz-queue.c | D | 03-May-2024 | 32.6 KiB | 1,355 | 705 | |
afl-fuzz-redqueen.c | D | 03-May-2024 | 64.9 KiB | 2,937 | 1,754 | |
afl-fuzz-run.c | D | 03-May-2024 | 24.1 KiB | 1,023 | 518 | |
afl-fuzz-state.c | D | 03-May-2024 | 19.7 KiB | 650 | 384 | |
afl-fuzz-stats.c | D | 03-May-2024 | 63.5 KiB | 2,250 | 1,345 | |
afl-fuzz-statsd.c | D | 03-May-2024 | 9.5 KiB | 276 | 174 | |
afl-fuzz.c | D | 03-May-2024 | 70 KiB | 2,660 | 1,666 | |
afl-gotcpu.c | D | 03-May-2024 | 7.5 KiB | 323 | 179 | |
afl-ld-lto.c | D | 03-May-2024 | 9 KiB | 366 | 227 | |
afl-performance.c | D | 03-May-2024 | 2.8 KiB | 111 | 55 | |
afl-sharedmem.c | D | 03-May-2024 | 8.6 KiB | 368 | 188 | |
afl-showmap.c | D | 03-May-2024 | 34 KiB | 1,465 | 865 | |
afl-tmin.c | D | 03-May-2024 | 31.5 KiB | 1,355 | 789 |
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