diff options
author | llzmb <46303940+llzmb@users.noreply.github.com> | 2021-12-02 17:08:06 +0100 |
---|---|---|
committer | llzmb <46303940+llzmb@users.noreply.github.com> | 2021-12-02 17:08:06 +0100 |
commit | 73e9677a881a6d8a43a02aba5a7d8000c0f87987 (patch) | |
tree | de7f9b8ada79862b51a4892c3db518807874e7be /docs/fuzzing_in_depth.md | |
parent | 9cb32ca1425879be9a7326b5810ede12713c2649 (diff) | |
download | afl++-73e9677a881a6d8a43a02aba5a7d8000c0f87987.tar.gz |
Change the word "behaviour" (BE) to "behavior" (AE)
Diffstat (limited to 'docs/fuzzing_in_depth.md')
-rw-r--r-- | docs/fuzzing_in_depth.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/fuzzing_in_depth.md b/docs/fuzzing_in_depth.md index c94590a4..8188a18e 100644 --- a/docs/fuzzing_in_depth.md +++ b/docs/fuzzing_in_depth.md @@ -178,8 +178,8 @@ The following sanitizers have built-in support in AFL++: * MSAN = Memory SANitizer, finds read access to uninitialized memory, eg. a local variable that is defined and read before it is even set. Enabled with `export AFL_USE_MSAN=1` before compiling. -* UBSAN = Undefined Behaviour SANitizer, finds instances where - by the C and - C++ standards - undefined behaviour happens, e.g. adding two signed integers +* UBSAN = Undefined Behavior SANitizer, finds instances where - by the C and C++ + standards - undefined behavior happens, e.g. adding two signed integers together where the result is larger than a signed integer can hold. Enabled with `export AFL_USE_UBSAN=1` before compiling. * CFISAN = Control Flow Integrity SANitizer, finds instances where the control @@ -196,7 +196,7 @@ The following sanitizers have built-in support in AFL++: of the target source code where you find a leak check necessary! Enabled with `export AFL_USE_LSAN=1` before compiling. -It is possible to further modify the behaviour of the sanitizers at run-time by +It is possible to further modify the behavior of the sanitizers at run-time by setting `ASAN_OPTIONS=...`, `LSAN_OPTIONS` etc. - the available parameters can be looked up in the sanitizer documentation of llvm/clang. afl-fuzz, however, requires some specific parameters important for fuzzing to be set. If you want |