diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-07-15 10:35:51 +0200 |
---|---|---|
committer | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-07-15 10:35:51 +0200 |
commit | 3cc0445e27628cf2e75d137424f02c8cd3a0c6a0 (patch) | |
tree | 2e4afeb0f53d48c02756ec0cc324a81793fe4d05 | |
parent | ee77fe4094273f6b618aa72b2aa0d79efd8bd31e (diff) | |
parent | 133dfc8b69ece83bd7b1e59e81f09815ff5b8e44 (diff) | |
download | afl++-3cc0445e27628cf2e75d137424f02c8cd3a0c6a0.tar.gz |
Merge branch 'dev' of github.com:vanhauser-thc/AFLplusplus into dev
-rw-r--r-- | examples/afl_frida/README.md | 2 | ||||
-rw-r--r-- | examples/afl_untracer/README.md | 2 |
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). |