diff options
author | Tobias Mayer <arbeitskraftmayer@gmail.com> | 2021-02-01 17:32:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-01 17:32:45 +0100 |
commit | e954c891a00eac190275417bf40f2eefb56399bb (patch) | |
tree | aad26d8879eb28b9da0e86c9a9b527bcce3db3ea | |
parent | 068bef5eab942df0a133c92522f2ab81b28ac636 (diff) | |
download | afl++-e954c891a00eac190275417bf40f2eefb56399bb.tar.gz |
Clarify usage of LD_LIBRARY_PATH in afl_frida
This will help not *accidentally* trying to set the variable to the library's binary.
-rw-r--r-- | utils/afl_frida/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/afl_frida/README.md b/utils/afl_frida/README.md index 7743479b..68b62009 100644 --- a/utils/afl_frida/README.md +++ b/utils/afl_frida/README.md @@ -20,7 +20,7 @@ search and edit the `STEP 1`, `STEP 2` and `STEP 3` locations. Example (after modifying afl-frida.c to your needs and compile it): ``` -LD_LIBRARY_PATH=/path/to/the/target/library afl-fuzz -i in -o out -- ./afl-frida +LD_LIBRARY_PATH=/path/to/the/target/library/ afl-fuzz -i in -o out -- ./afl-frida ``` (or even remote via afl-network-proxy). |