about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--examples/afl_frida/README.md2
-rw-r--r--examples/afl_untracer/README.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/afl_frida/README.md b/examples/afl_frida/README.md
index 33bd67c8..1ee19a68 100644
--- a/examples/afl_frida/README.md
+++ b/examples/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):
 ```
-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).
 
diff --git a/examples/afl_untracer/README.md b/examples/afl_untracer/README.md
index 9cb13527..ada0c916 100644
--- a/examples/afl_untracer/README.md
+++ b/examples/afl_untracer/README.md
@@ -39,7 +39,7 @@ The file is created at `~/Desktop/patches.txt`
 Example (after modifying afl-untracer.c to your needs, compiling and creating
 patches.txt):
 ```
-AFL_UNTRACER_FILE=./patches.txt afl-fuzz -i in -o out -- ./afl-untracer
+LD_LIBRARY_PATH=/path/to/target/library AFL_UNTRACER_FILE=./patches.txt afl-fuzz -i in -o out -- ./afl-untracer
 ```
 (or even remote via afl-network-proxy).