about summary refs log tree commit diff
path: root/utils/libtokencap
diff options
context:
space:
mode:
authorAlexander Shvedov <60114847+a-shvedov@users.noreply.github.com>2024-06-03 19:14:04 +0300
committerGitHub <noreply@github.com>2024-06-03 19:14:04 +0300
commitbc2ccf464ff966adb2cbb17c0ff9957cf35ab513 (patch)
tree28221400508e0b853b3d3f4a53f7092d7a127802 /utils/libtokencap
parentb8536ced093ca46f004bea76adbd1ad484d8a8d7 (diff)
downloadafl++-bc2ccf464ff966adb2cbb17c0ff9957cf35ab513.tar.gz
Update README.md
Diffstat (limited to 'utils/libtokencap')
-rw-r--r--utils/libtokencap/README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/utils/libtokencap/README.md b/utils/libtokencap/README.md
index d1c1b8b3..29225835 100644
--- a/utils/libtokencap/README.md
+++ b/utils/libtokencap/README.md
@@ -75,15 +75,15 @@ and then generate a dictionary file from those tokens.
 
 #### usage:
 ```bash
-./generate_libtoken_dict.sh -p /path/to/libtokencap.so -b /path/to/target/program -o /path/to/target/output -t 5
+./generate_libtoken_dict.sh -p /path/to/libtokencap.so -b /path/to/target/program -o /path/to/target/output -t 5 -- [-program_args]
 ```
 #### description opts:
 - ```-o``` : Path to target output directory ;
 - ```-b``` : Path to target program binary ;
 - ```-p``` : Path to LD_PRELOAD library ;
-- ```-t``` : Timeout in seconds
+- ```-t``` : Timeout in seconds ;
+- ```-- [-program_args]```: Any additional arguments required by the target binary can be specified after ```--```.
  
 #### output:
-The script generates a temporary token file (```temp_output.txt```) in the current working directory, 
-containing tokens captured during the execution of the target binary.
-A sorted and unique token dictionary file is created in the same directory as the target output, with a ```*.dict``` extension.
+A sorted and unique token dictionary file with the extension ``*.dict`` 
+is created in the same directory as the target output containing tokens captured during the execution of the target binary.