about summary refs log tree commit diff
path: root/qemu_mode/libqasan/README.md
diff options
context:
space:
mode:
authorhexcoder- <heiko@hexco.de>2021-02-13 13:32:42 +0100
committerhexcoder- <heiko@hexco.de>2021-02-13 13:32:42 +0100
commit70651d60bdc5c70a8a699e0873a4726e1347a7c3 (patch)
tree898468927bb1bc06ccceaa763cf44fc333ab3ccc /qemu_mode/libqasan/README.md
parent385312c65858695b55607ccd376fb5ea8f83a688 (diff)
parent87a607c7d081dac1e4afd7c3cbe5accf62d355e4 (diff)
downloadafl++-70651d60bdc5c70a8a699e0873a4726e1347a7c3.tar.gz
Merge branch 'dev' of https://github.com/AFLplusplus/AFLplusplus into dev
Diffstat (limited to 'qemu_mode/libqasan/README.md')
-rw-r--r--qemu_mode/libqasan/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/qemu_mode/libqasan/README.md b/qemu_mode/libqasan/README.md
index 3a43cdf1..83fb2442 100644
--- a/qemu_mode/libqasan/README.md
+++ b/qemu_mode/libqasan/README.md
@@ -4,7 +4,7 @@ This library is the injected runtime used by QEMU AddressSanitizer (QASan).
 
 The original repository is [here](https://github.com/andreafioraldi/qasan).
 
-The version embedded in qemuafl is an updated version of just the usermode part and this runtime in injected via LD_PRELOAD (so works just for dynamically linked binaries).
+The version embedded in qemuafl is an updated version of just the usermode part and this runtime is injected via LD_PRELOAD (so works just for dynamically linked binaries).
 
 The usage is super simple, just set the env var `AFL_USE_QASAN=1` when fuzzing in qemu mode (-Q). afl-fuzz will automatically set AFL_PRELOAD to load this library and enable the QASan instrumentation in afl-qemu-trace.
 
@@ -14,6 +14,6 @@ For debugging purposes, we still suggest to run the original QASan as the stackt
 
 If your target binary is PIC x86_64, you should also give a try to [retrowrite](https://github.com/HexHive/retrowrite) for static rewriting.
 
-If it fails, or if your binary is for another architecture, or you want to use persistent and snapshot mdoe, AFL++ QASan mode is what you want/have to use.
+If it fails, or if your binary is for another architecture, or you want to use persistent and snapshot mode, AFL++ QASan mode is what you want/have to use.
 
 Note that the overhead of libdislocator when combined with QEMU mode is much lower but it can catch less bugs. This is a short blanket, take your choice.