diff options
author | Ashis Kumar Singh <49238464+ashiscs@users.noreply.github.com> | 2020-03-25 19:35:38 +0530 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-03-27 11:06:06 +0100 |
commit | 3c3a5aa503a137c7f9a487ab82e93c638e699c03 (patch) | |
tree | 65980dbde048fc5df0da0514a0e699dcefca8392 | |
parent | 6d3dc83c5dde31ccb74e04815a04b85b05761b30 (diff) | |
download | afl++-3c3a5aa503a137c7f9a487ab82e93c638e699c03.tar.gz |
updated with required changes
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md index 88e2b3c6..781c8b49 100644 --- a/README.md +++ b/README.md @@ -124,7 +124,7 @@ all the big ideas. This can be your way to support and contribute to AFL++ - extend it to something cool -We have an idealist in [docs/ideas.md](docs/ideas.md) +We have an idea list in [docs/ideas.md](docs/ideas.md) For everyone who wants to contribute (and send pull requests) please read [CONTRIBUTING.md](CONTRIBUTING.md) before your submit. @@ -316,7 +316,7 @@ file for important caveats. When source code is *NOT* available, the fuzzer offers experimental support for fast, on-the-fly instrumentation of black-box binaries. This is accomplished -with a version of QEMU running in the lesser-known "userspace emulation" mode. +with a version of QEMU running in the lesser-known "user space emulation" mode. QEMU is a project separate from AFL, but you can conveniently build the feature by doing: @@ -656,7 +656,7 @@ Here are some of the most important caveats for AFL: - AFL detects faults by checking for the first spawned process dying due to a signal (SIGSEGV, SIGABRT, etc). Programs that install custom handlers for these signals may need to have the relevant code commented out. In the same - vein, faults in child process spawned by the fuzzed target may evade + vein, faults in child processes spawned by the fuzzed target may evade detection unless you manually add some code to catch that. - As with any other brute-force tool, the fuzzer offers limited coverage if |