diff options
author | llzmb <46303940+llzmb@users.noreply.github.com> | 2021-12-02 21:03:59 +0100 |
---|---|---|
committer | llzmb <46303940+llzmb@users.noreply.github.com> | 2021-12-02 21:11:01 +0100 |
commit | 65c3db86256b3907404623fe1c52e01c9d12ff97 (patch) | |
tree | 8cb2d3b063980a9ea7bf4f42806d83e3f6134355 /docs/best_practices.md | |
parent | a7694e299a331bd8c4826b2402ee68cd6f83d8f9 (diff) | |
download | afl++-65c3db86256b3907404623fe1c52e01c9d12ff97.tar.gz |
Fix punctuation in connection with "e.g."
Diffstat (limited to 'docs/best_practices.md')
-rw-r--r-- | docs/best_practices.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/best_practices.md b/docs/best_practices.md index 15f8870c..6a406bde 100644 --- a/docs/best_practices.md +++ b/docs/best_practices.md @@ -48,7 +48,7 @@ this with persistent mode [instrumentation/README.persistent_mode.md](../instrum and you have a performance gain of x10 instead of a performance loss of over x10 - that is a x100 difference!). -If modifying the source is not an option (e.g. because you only have a binary +If modifying the source is not an option (e.g., because you only have a binary and perform binary fuzzing) you can also use a shared library with AFL_PRELOAD to emulate the network. This is also much faster than the real network would be. See [utils/socket_fuzzing/](../utils/socket_fuzzing/). @@ -123,7 +123,7 @@ Four steps are required to do this and it also requires quite some knowledge of Only exclude those functions from instrumentation that provide no value for coverage - that is if it does not process any fuzz data directly or - indirectly (e.g. hash maps, thread management etc.). If, however, a + indirectly (e.g., hash maps, thread management etc.). If, however, a function directly or indirectly handles fuzz data, then you should not put the function in a deny instrumentation list and rather live with the instability it comes with. |