diff options
author | vanhauser-thc <vh@thc.org> | 2022-03-07 09:37:19 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2022-03-07 09:37:19 +0100 |
commit | d29773825594e7249e8a3a80b344a69249e7ab9a (patch) | |
tree | beffa17b621fa689425a708fe1b1ee794fd048d0 | |
parent | 981a04eb27e7e0117db05eccbcbb0677268d3a38 (diff) | |
download | afl++-d29773825594e7249e8a3a80b344a69249e7ab9a.tar.gz |
nits
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | src/afl-fuzz-bitmap.c | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md index 66b884e2..a29ce792 100644 --- a/README.md +++ b/README.md @@ -112,7 +112,7 @@ Step-by-step quick start: 5. You will find found crashes and hangs in the subdirectories `crashes/` and `hangs/` in the `-o output_dir` directory. You can replay the crashes by - feeding them to the target, e.g.: + feeding them to the target, e.g. if your target is using stdin: ``` cat output_dir/crashes/id:000000,* | /path/to/tested/program [...program's cmdline...] diff --git a/src/afl-fuzz-bitmap.c b/src/afl-fuzz-bitmap.c index a7c77aec..971ac494 100644 --- a/src/afl-fuzz-bitmap.c +++ b/src/afl-fuzz-bitmap.c @@ -423,10 +423,10 @@ void write_crash_readme(afl_state_t *afl) { "them to a vendor? Check out the afl-tmin that comes with the fuzzer!\n\n" "Found any cool bugs in open-source tools using afl-fuzz? If yes, please " - "drop\n" - "an mail at <afl-users@googlegroups.com> once the issues are fixed\n\n" - - " https://github.com/AFLplusplus/AFLplusplus\n\n", + "post\n" + "to https://github.com/AFLplusplus/AFLplusplus/issues/286 once the " + "issues\n" + " are fixed :)\n\n", afl->orig_cmdline, stringify_mem_size(val_buf, sizeof(val_buf), |