diff options
author | van Hauser <vh@thc.org> | 2022-11-26 22:22:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-26 22:22:07 +0100 |
commit | b5f2a172355314acdf0eb869028fafdb92e30681 (patch) | |
tree | ee86f35d43213e2ed4e67cc9ab174086c162ec1f | |
parent | 28af7cb9bdea3ff55e078464be6a0ebdd8a7fa48 (diff) | |
parent | 32a331ab43095c2493514a9066c30ae7665433e4 (diff) | |
download | afl++-b5f2a172355314acdf0eb869028fafdb92e30681.tar.gz |
Merge pull request #1596 from a-shvedov/patch-1
Update README.md
-rw-r--r-- | utils/libtokencap/README.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/libtokencap/README.md b/utils/libtokencap/README.md index 50104291..8705452c 100644 --- a/utils/libtokencap/README.md +++ b/utils/libtokencap/README.md @@ -47,9 +47,11 @@ by AFL++ in that earlier run. This demonstrates the basic principle: ``` export AFL_TOKEN_FILE=$PWD/temp_output.txt + timeout_sec="5" for i in <out_dir>/queue/id*; do LD_PRELOAD=/path/to/libtokencap.so \ + timeout -s SIGKILL ${timeout_sec} \ /path/to/target/program [...params, including $i...] done |