diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-11-02 14:17:44 +0100 |
---|---|---|
committer | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-11-02 14:17:44 +0100 |
commit | fd20432debfcc7c63c3fa71a4b604791fdf07a9f (patch) | |
tree | 207704745ebe15261d8891dd8f0c50d21fa88707 | |
parent | a260d34b4997d86ec158843c2362dae009e3bcf7 (diff) | |
download | afl++-fd20432debfcc7c63c3fa71a4b604791fdf07a9f.tar.gz |
typos
-rw-r--r-- | qemu_mode/README.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/qemu_mode/README.md b/qemu_mode/README.md index 348f5bbc..d5173f6b 100644 --- a/qemu_mode/README.md +++ b/qemu_mode/README.md @@ -83,10 +83,10 @@ As an extension to persistent mode, qemuafl can snapshot and restore the memory state and brk(). Details are in the persistent mode readme. The env var that enable the ready to use snapshot mode is AFL_QEMU_SNAPSHOT and -take an hex address as value that is the snpashot entrypoint. +takes a hex address as value that is the snpashot entrypoint. -Snapshpot mode can work restoring all the writeable pages, tipically slower than -fork() mode but, opposed to fork(), it can scale better with multicore. +Snapshpot mode can work restoring all the writeable pages, that is tipically slower than +fork() mode but, on the other hand, it can scale better with multicore. If the AFL++ Snaphsot kernel module is loaded, qemuafl will use it and, in this case, the speed is better than fork() and also the scaling capabilities. @@ -96,8 +96,8 @@ You can tell QEMU to instrument only a part of the address space. Just set AFL_QEMU_INST_RANGES=A,B,C... -The format of the iterms in the list is either a range of addresses like 0x123-0x321 -or a module name like module.so (that is mathed in the mapped object filename). +The format of the items in the list is either a range of addresses like 0x123-0x321 +or a module name like module.so (that is matched in the mapped object filename). ## 7) CompareCoverage |