aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorMaciej Domanski <maciej.domanski@trailofbits.com>2022-12-27 16:57:30 +0100
committerMaciej Domanski <maciej.domanski@trailofbits.com>2022-12-27 16:57:30 +0100
commit3188cac1d074352e9110d83c7ad5c3d5684d90f8 (patch)
tree05e15c62fd8a174cd65ea670029ca1c4894b0d5e /utils
parentb189640a927e9ed17347b26f6579b0e41dcdda38 (diff)
downloadAFLplusplus-3188cac1d074352e9110d83c7ad5c3d5684d90f8.tar.gz
cleanup
Diffstat (limited to 'utils')
-rw-r--r--utils/argv_fuzzing/README.md2
-rw-r--r--utils/argv_fuzzing/argv-fuzz-inl.h8
2 files changed, 5 insertions, 5 deletions
diff --git a/utils/argv_fuzzing/README.md b/utils/argv_fuzzing/README.md
index bcf388c7..ca90f26c 100644
--- a/utils/argv_fuzzing/README.md
+++ b/utils/argv_fuzzing/README.md
@@ -1,4 +1,4 @@
-#argvfuzz
+# argvfuzz feature
AFL++ supports fuzzing file inputs or stdin. When source is available,
`argv-fuzz-inl.h` can be used to change `main()` to build argv from stdin.
diff --git a/utils/argv_fuzzing/argv-fuzz-inl.h b/utils/argv_fuzzing/argv-fuzz-inl.h
index bb8f2813..abe86d3c 100644
--- a/utils/argv_fuzzing/argv-fuzz-inl.h
+++ b/utils/argv_fuzzing/argv-fuzz-inl.h
@@ -29,10 +29,10 @@
If you would like to always preserve argv[0], use this instead:
AFL_INIT_SET0("prog_name");
- To enable persistent fuzzing, use the AFL_INIT_ARGV_PERSISTENT macro with
- buf as argument, or use AFL_INIT_SET0_PERSISTENT("prog_name", buf)
- to preserver argv[0]. buf should be defined as:
- unsigned char *buf = __AFL_FUZZ_TESTCASE_BUF;
+ To enable persistent fuzzing, use the AFL_INIT_ARGV_PERSISTENT macro with
+ buf as argument, or use AFL_INIT_SET0_PERSISTENT("prog_name", buf)
+ to preserver argv[0]. buf should be defined as:
+ unsigned char *buf = __AFL_FUZZ_TESTCASE_BUF;
*/
#ifndef _HAVE_ARGV_FUZZ_INL