File tree
124 files changed
+4997
-944
lines changed- content/docs
- docs
- building
- categories
- docs
- afl-fuzz_approach
- best_practices
- changelog
- custom_mutators
- env_variables
- faq
- features
- fuzzing_binary-only_targets
- fuzzing_in_depth
- ideas
- important_changes
- install
- readme
- rpc_statsd
- third_party_tools
- tutorials
- libxml2_tutorial
- features
- libafl-book
- advanced_features
- baby_fuzzer
- core_concepts
- css
- design
- getting_started
- message_passing
- tutorial
- papers
- tags
- resources/_gen/assets/scss
- static
- libafl-book
- advanced_features
- baby_fuzzer
- core_concepts
- css
- design
- getting_started
- message_passing
- tutorial
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
124 files changed
+4997
-944
lines changedSubmodule AFLplusplus updated 74 files
- .custom-format.py+1-1
- .gitignore+1
- GNUmakefile+4-3
- GNUmakefile.llvm+5-2
- README.md+2-2
- TODO.md+18-3
- afl-cmin+15-17
- afl-cmin.bash+50-36
- afl-persistent-config+6-1
- afl-system-config+5-1
- benchmark/COMPARISON-4
- benchmark/COMPARISON.md+9
- benchmark/README.md+59
- benchmark/benchmark-results.jsonl+420
- benchmark/benchmark.ipynb+1.4k
- benchmark/benchmark.py+281
- benchmark/benchmark.sh-42
- custom_mutators/examples/custom_post_run.c+53
- custom_mutators/examples/example.py+5
- docs/Changelog.md+30-3
- docs/INSTALL.md+1-1
- docs/afl-fuzz_approach.md+4
- docs/custom_mutators.md+5-4
- docs/env_variables.md+19
- docs/fuzzing_binary-only_targets.md+1-7
- docs/tutorials.md+4-1
- frida_mode/src/main.c+6-6
- frida_mode/src/ranges.c+1-1
- include/afl-fuzz.h+13-1
- include/afl-mutations.h+26-11
- include/config.h+1-1
- include/envs.h+8
- include/forkserver.h+1
- include/xxhash.h+15-15
- injections.dic+7
- instrumentation/README.injections.md+48
- instrumentation/SanitizerCoverageLTO.so.cc+31-23
- instrumentation/SanitizerCoveragePCGUARD.so.cc+9
- instrumentation/afl-compiler-rt.o.c+80-18
- instrumentation/afl-llvm-common.cc+6-2
- instrumentation/afl-llvm-dict2file.so.cc+30-16
- instrumentation/afl-llvm-pass.so.cc+2-2
- instrumentation/cmplog-instructions-pass.cc+21-19
- instrumentation/cmplog-routines-pass.cc+9-8
- instrumentation/cmplog-switches-pass.cc+1-1
- instrumentation/compare-transform-pass.so.cc+16-14
- instrumentation/split-compares-pass.so.cc+50-31
- instrumentation/split-switches-pass.so.cc+1-1
- nyx_mode/LIBNYX_VERSION+1-1
- nyx_mode/QEMU-Nyx+1-1
- nyx_mode/QEMU_NYX_VERSION+1-1
- nyx_mode/libnyx+1-1
- qemu_mode/libqasan/dlmalloc.c+19-19
- qemu_mode/libqasan/malloc.c+2-2
- qemu_mode/qemuafl+1-1
- src/afl-cc.c+60-23
- src/afl-common.c+25-2
- src/afl-forkserver.c+10-5
- src/afl-fuzz-bitmap.c+13-1
- src/afl-fuzz-extras.c+3-2
- src/afl-fuzz-mutators.c+12
- src/afl-fuzz-one.c+17-15
- src/afl-fuzz-python.c+30
- src/afl-fuzz-redqueen.c+237-26
- src/afl-fuzz-run.c+18-1
- src/afl-fuzz-state.c+1-2
- src/afl-fuzz-stats.c+18-15
- src/afl-fuzz-statsd.c+1-1
- src/afl-fuzz.c+49-3
- src/afl-ld-lto.c+1-1
- unicorn_mode/UNICORNAFL_VERSION+1-1
- unicorn_mode/unicornafl+1-1
- utils/aflpp_driver/aflpp_driver.c+18-1
- utils/libtokencap/libtokencap.so.c+3-3
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
14 | 14 |
| |
15 | 15 |
| |
16 | 16 |
| |
17 |
| - | |
18 |
| - | |
| 17 | + | |
| 18 | + |
Lines changed: 30 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
9 | 9 |
| |
10 | 10 |
| |
11 | 11 |
| |
12 |
| - | |
| 12 | + | |
13 | 13 |
| |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
14 | 32 |
| |
15 | 33 |
| |
16 | 34 |
| |
17 | 35 |
| |
18 | 36 |
| |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
19 | 43 |
| |
20 | 44 |
| |
21 | 45 |
| |
22 | 46 |
| |
23 | 47 |
| |
24 | 48 |
| |
25 | 49 |
| |
| 50 | + | |
| 51 | + | |
26 | 52 |
| |
27 | 53 |
| |
| 54 | + | |
| 55 | + | |
28 | 56 |
| |
29 |
| - | |
| 57 | + | |
30 | 58 |
| |
31 | 59 |
| |
32 |
| - | |
33 | 60 |
| |
34 | 61 |
| |
35 | 62 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
13 | 13 |
| |
14 | 14 |
| |
15 | 15 |
| |
16 |
| - | |
| 16 | + | |
17 | 17 |
| |
18 | 18 |
| |
19 | 19 |
| |
|
Lines changed: 4 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
11 | 11 |
| |
12 | 12 |
| |
13 | 13 |
| |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
14 | 18 |
| |
15 | 19 |
| |
16 | 20 |
| |
|
Lines changed: 5 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
131 | 131 |
| |
132 | 132 |
| |
133 | 133 |
| |
134 |
| - | |
135 |
| - | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
136 | 137 |
| |
137 | 138 |
| |
138 | 139 |
| |
| |||
203 | 204 |
| |
204 | 205 |
| |
205 | 206 |
| |
206 |
| - | |
| 207 | + | |
207 | 208 |
| |
208 | 209 |
| |
209 | 210 |
| |
| |||
382 | 383 |
| |
383 | 384 |
| |
384 | 385 |
| |
385 |
| - | |
| 386 | + |
Lines changed: 19 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
141 | 141 |
| |
142 | 142 |
| |
143 | 143 |
| |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
144 | 150 |
| |
145 | 151 |
| |
146 | 152 |
| |
| |||
196 | 202 |
| |
197 | 203 |
| |
198 | 204 |
| |
| 205 | + | |
| 206 | + | |
| 207 | + | |
| 208 | + | |
| 209 | + | |
| 210 | + | |
| 211 | + | |
| 212 | + | |
| 213 | + | |
| 214 | + | |
| 215 | + | |
| 216 | + | |
| 217 | + | |
199 | 218 |
| |
200 | 219 |
| |
201 | 220 |
| |
|
Lines changed: 1 addition & 7 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
100 | 100 |
| |
101 | 101 |
| |
102 | 102 |
| |
103 |
| - | |
104 |
| - | |
| 103 | + | |
105 | 104 |
| |
106 | 105 |
| |
107 | 106 |
| |
| |||
119 | 118 |
| |
120 | 119 |
| |
121 | 120 |
| |
122 |
| - | |
123 |
| - | |
124 |
| - | |
125 |
| - | |
126 | 121 |
| |
127 | 122 |
| |
128 | 123 |
| |
| |||
308 | 303 |
| |
309 | 304 |
| |
310 | 305 |
| |
311 |
| - | |
312 | 306 |
| |
313 | 307 |
| |
314 | 308 |
| |
|
Lines changed: 4 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
27 | 27 |
| |
28 | 28 |
| |
29 | 29 |
| |
30 |
| - | |
| 30 | + | |
31 | 31 |
| |
32 | 32 |
| |
33 | 33 |
| |
| |||
47 | 47 |
| |
48 | 48 |
| |
49 | 49 |
| |
| 50 | + | |
| 51 | + | |
| 52 | + | |
50 | 53 |
| |
51 | 54 |
| |
52 | 55 |
| |
|
0 commit comments