about summary refs log tree commit diff
path: root/nyx_mode/README.md
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2023-08-04 10:50:46 +0000
committerGitHub <noreply@github.com>2023-08-04 10:50:46 +0000
commit738a6c07311a41515146c3adab04bce9336a160c (patch)
tree1ba971ff87fc0e32f82be2bbd3f0d23cf1661229 /nyx_mode/README.md
parent0a28bce0167416aa5dbe9d23c242f4ec43e79b75 (diff)
parentc2a0a245940f71c466a776d1217adac3f8b25373 (diff)
downloadafl++-738a6c07311a41515146c3adab04bce9336a160c.tar.gz
Merge pull request #1824 from schumilo/dev
Nyx mode - minor changes 
Diffstat (limited to 'nyx_mode/README.md')
-rw-r--r--nyx_mode/README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/nyx_mode/README.md b/nyx_mode/README.md
index 605bc103..aee9879e 100644
--- a/nyx_mode/README.md
+++ b/nyx_mode/README.md
@@ -150,12 +150,12 @@ afl-cmin -i in_dir -o out_dir -X -- ./PACKAGE-DIRECTORY
 
 On each program startup of one the AFL++ tools in Nyx mode, a Nyx VM is spawned, and a bootstrapping procedure is performed inside the VM to prepare the target environment. As a consequence, due to the bootstrapping procedure, the launch performance is much slower compared to other modes. However, this can be optimized by reusing an existing fuzzing snapshot to avoid the slow re-execution of the bootstrap procedure. 
 
-A fuzzing snapshot is automatically created and stored in the output directory at `out_dir/workdir/snapshot/` by the first parent process of `afl-fuzz` if parallel mode is used. To enable this feature, set the path to an existing snapshot directory in the `NYX_REUSE_SNAPSHOT` environment variable and use the tools as usual:
+A fuzzing snapshot is automatically created and stored in the output directory at `out_dir/workdir/snapshot/` by the first parent process of `afl-fuzz` if parallel mode is used. To enable this feature, set the path to an existing snapshot directory in the `AFL_NYX_REUSE_SNAPSHOT` environment variable and use the tools as usual:
 
 ```shell 
 afl-fuzz -i ./in_dir -o ./out_dir -Y -M 0 ./PACKAGE-DIRECTORY
 
-NYX_REUSE_SNAPSHOT=./out_dir/workdir/snapshot/ afl-analyze -i in_file -X  -- ./PACKAGE-DIRECTORY
+AFL_NYX_REUSE_SNAPSHOT=./out_dir/workdir/snapshot/ afl-analyze -i in_file -X  -- ./PACKAGE-DIRECTORY
 ```
 
 
@@ -311,7 +311,7 @@ command:
 ```
 
 If you want to disable fast snapshots (except for crashes), you can simply set
-the `NYX_DISABLE_SNAPSHOT_MODE` environment variable.
+the `AFL_NYX_DISABLE_SNAPSHOT_MODE` environment variable.
 
 ### Nyx crash reports
 
@@ -331,7 +331,7 @@ the header (1408 bytes) and the remaining bytes can be used to transfer crash
 reports (also the `hprintf` feature utilizes the very same shared memory for 
 transferring data). By default a crash report will be truncated to 2688 bytes.
 However, if you want to increase the size of the shared memory region, you can
-set the `NYX_AUX_BUFFER_SIZE` environment variable to a higher value (keep in
+set the `AFL_NYX_AUX_SIZE` environment variable to a higher value (keep in
 mind that this value must be a multiple of 4096).
 
 ### Run AFL++Nyx with a custom agent