diff options
author | a-shvedov <60114847+a-shvedov@users.noreply.github.com> | 2022-11-26 10:34:14 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-26 10:34:14 +0300 |
commit | 32a331ab43095c2493514a9066c30ae7665433e4 (patch) | |
tree | a957bb54acf01a9f1480014e5d9e4357a12ef582 | |
parent | 8cdc48f73a17ddd557897f2098937a8ba3bfe184 (diff) | |
download | afl++-32a331ab43095c2493514a9066c30ae7665433e4.tar.gz |
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 |