OLD | NEW |
1 # =================== | 1 # =================== |
2 # AFL "Life Pro Tips" | 2 # AFL "Life Pro Tips" |
3 # =================== | 3 # =================== |
4 # | 4 # |
5 # Bite-sized advice for those who understand the basics, but can't be bothered | 5 # Bite-sized advice for those who understand the basics, but can't be bothered |
6 # to read or memorize every other piece of documentation for AFL. | 6 # to read or memorize every other piece of documentation for AFL. |
7 # | 7 # |
8 | 8 |
9 % | 9 % |
10 | 10 |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 | 114 |
115 Need to fuzz the command-line arguments of a particular program? | 115 Need to fuzz the command-line arguments of a particular program? |
116 You can find a simple solution in experimental/argv_fuzzing. | 116 You can find a simple solution in experimental/argv_fuzzing. |
117 | 117 |
118 % | 118 % |
119 | 119 |
120 Attacking a format that uses checksums? Remove the checksum-checking code or | 120 Attacking a format that uses checksums? Remove the checksum-checking code or |
121 use a postprocessor! See experimental/post_library/ for more. | 121 use a postprocessor! See experimental/post_library/ for more. |
122 | 122 |
123 % | 123 % |
| 124 |
| 125 Dealing with a very slow target or hoping for instant results? Specify -d |
| 126 when calling afl-fuzz! |
| 127 |
| 128 % |
OLD | NEW |