aboutsummaryrefslogtreecommitdiffstats
path: root/docs/reproducing_crashes.md
diff options
context:
space:
mode:
authorPaul Chaignon <paul.chaignon@gmail.com>2018-10-01 15:10:34 +0200
committerDmitry Vyukov <dvyukov@google.com>2018-10-01 16:13:01 +0200
commite06f77131b8466a01d9bc1466bd22c9620f4c786 (patch)
tree6d8d9779f36cf36f6737de17d67cf6baa935a29e /docs/reproducing_crashes.md
parentc90dde97ba7264c0c5d5692b7e316b6c5ca5d976 (diff)
docs: fix typo in reproduction documentation
Diffstat (limited to 'docs/reproducing_crashes.md')
-rw-r--r--docs/reproducing_crashes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/reproducing_crashes.md b/docs/reproducing_crashes.md
index 9643b75cc..260119b9e 100644
--- a/docs/reproducing_crashes.md
+++ b/docs/reproducing_crashes.md
@@ -3,7 +3,7 @@
The process of creating reproducer programs for syzkaller bugs is automated, however it's not perfect, so syzkaller provides a few tools for executing and reproducing programs manually.
Crash logs created in manager `workdir/crashes` dir contain programs executed just before a crash. In parallel execution mode (when `procs` parameter in manager config is set to value larger than 1), program that caused the crash does not necessary immediately precedes it; the guilty program can be somewhere before.
-The are two tools that can help you identify and minimize the program that causes a crash: `tools/syz-execprog` and `tools/syz-prog2c`.
+There are two tools that can help you identify and minimize the program that causes a crash: `tools/syz-execprog` and `tools/syz-prog2c`.
`tools/syz-execprog` executes a single syzkaller program or a set of programs in various modes (once or loop indefinitely; in threaded/collide mode (see below), with or without coverage collection). You can start by running all programs in the crash log in a loop to check that at least one of them indeed crashes kernel: `./syz-execprog -executor=./syz-executor -repeat=0 -procs=16 -cover=0 crash-log`. Then try to identify the single program that causes the crash, you can test programs with `./syz-execprog -executor=./syz-executor -repeat=0 -procs=16 -cover=0 file-with-a-single-program`.