Skip to content

Commit b4208dd

Browse files
little fix for docs
1 parent 4a492d5 commit b4208dd

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

docs/env_variables.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ fairly broad use of environment variables instead:
104104
detection)
105105
- `AFL_USE_CFISAN=1` - activates the Control Flow Integrity sanitizer (e.g.
106106
type confusion vulnerabilities)
107+
- `AFL_CFISAN_VERBOSE=1` - outputs detailed information when control flow integrity violations occur, instead of simply terminating with "Illegal Instruction"
107108
- `AFL_USE_LSAN` - activates the leak sanitizer. To perform a leak check
108109
within your program at a certain point (such as at the end of an
109110
`__AFL_LOOP()`), you can run the macro `__AFL_LEAK_CHECK();` which will
@@ -114,10 +115,7 @@ fairly broad use of environment variables instead:
114115
- `AFL_USE_TSAN=1` - activates the thread sanitizer to find thread race
115116
conditions
116117
- `AFL_USE_UBSAN=1` - activates the undefined behavior sanitizer
117-
118-
- Setting `AFL_UBSAN_VERBOSE=1` or `AFL_CFISAN_VERBOSE=1` enables verbose output for the respective sanitizers:
119-
- `AFL_UBSAN_VERBOSE=1` - outputs detailed diagnostic information when undefined behavior is detected
120-
- `AFL_CFISAN_VERBOSE=1` - outputs detailed information when control flow integrity violations occur, instead of simply terminating with "Illegal Instruction"
118+
- `AFL_UBSAN_VERBOSE=1` - outputs detailed diagnostic information when undefined behavior is detected, instead of simply terminating with "Illegal Instruction"
121119
122120
- `TMPDIR` is used by afl-as for temporary files; if this variable is not set,
123121
the tool defaults to /tmp.

0 commit comments

Comments
 (0)