diff options
author | ploppelop <70337824+ploppelop@users.noreply.github.com> | 2020-08-31 18:34:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-31 18:34:27 +0200 |
commit | 338638b124f46ac9fda25efc0060910a781d199c (patch) | |
tree | dd41be1ffcc9e471591d7c7bd899baf1987aeb97 /docs/parallel_fuzzing.md | |
parent | 17e1a72b3b5869852c406a3767d6eef5ce6132bd (diff) | |
download | afl++-338638b124f46ac9fda25efc0060910a781d199c.tar.gz |
Update parallel_fuzzing.md
fix multisystem example
Diffstat (limited to 'docs/parallel_fuzzing.md')
-rw-r--r-- | docs/parallel_fuzzing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/parallel_fuzzing.md b/docs/parallel_fuzzing.md index 12895ac3..bf57ace8 100644 --- a/docs/parallel_fuzzing.md +++ b/docs/parallel_fuzzing.md @@ -146,7 +146,7 @@ write a simple script that performs two actions: ```sh for srchost in `cat HOSTLIST`; do for dsthost in `cat HOSTLIST`; do - test "$s" = "$d" && continue + test "$srchost" = "$dsthost" && continue ssh user@$srchost 'tar -kxzf -' < $dsthost.tgz done done |