You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/env_variables.md
+2-4Lines changed: 2 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -104,6 +104,7 @@ fairly broad use of environment variables instead:
104
104
detection)
105
105
- `AFL_USE_CFISAN=1` - activates the Control Flow Integrity sanitizer (e.g.
106
106
type confusion vulnerabilities)
107
+
- `AFL_CFISAN_VERBOSE=1` - outputs detailed information when control flow integrity violations occur, instead of simply terminating with "Illegal Instruction"
107
108
- `AFL_USE_LSAN` - activates the leak sanitizer. To perform a leak check
108
109
within your program at a certain point (such as at the end of an
109
110
`__AFL_LOOP()`), you can run the macro `__AFL_LEAK_CHECK();` which will
@@ -114,10 +115,7 @@ fairly broad use of environment variables instead:
114
115
- `AFL_USE_TSAN=1` - activates the thread sanitizer to find thread race
115
116
conditions
116
117
- `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"
121
119
122
120
- `TMPDIR` is used by afl-as for temporary files; if this variable is not set,
0 commit comments