• Home
Name Date Size #Lines LOC

..--

Godeps/03-May-2024-442438

dashboard/03-May-2024-19,80818,036

docs/03-May-2024-3,4982,874

executor/03-May-2024-21,63120,483

pkg/03-May-2024-124,855112,944

prog/03-May-2024-9,2078,032

sys/03-May-2024-286,938282,481

syz-ci/03-May-2024-1,5381,280

syz-fuzzer/03-May-2024-1,1931,051

syz-hub/03-May-2024-915815

syz-manager/03-May-2024-2,7252,429

tools/03-May-2024-3,4562,924

vendor/03-May-2024-403,894299,683

vm/03-May-2024-3,8123,223

.clang-formatD03-May-2024380 1614

.gitignoreD03-May-202430 75

.gometalinter.jsonD03-May-2024928 4645

.travis.ymlD03-May-2024963 3124

AUTHORSD03-May-2024567 2724

CONTRIBUTORSD03-May-2024764 3836

LICENSED03-May-20249.9 KiB175149

METADATAD03-May-2024439 1513

MODULE_LICENSE_APACHE2D03-May-20240

MakefileD03-May-202410 KiB294185

NOTICED03-May-20249.9 KiB175149

OWNERSD03-May-202436 32

README.mdD03-May-20243.3 KiB4129

README.md

1# syzkaller - kernel fuzzer
2
3[![Build Status](https://travis-ci.org/google/syzkaller.svg?branch=master)](https://travis-ci.org/google/syzkaller) [![Go Report Card](https://goreportcard.com/badge/github.com/google/syzkaller)](https://goreportcard.com/report/github.com/google/syzkaller) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE)
4
5`syzkaller` is an unsupervised coverage-guided kernel fuzzer. `Linux` kernel fuzzing has the most support, `akaros`, `freebsd`, `fuchsia`, `netbsd`, `windows` and `gvisor` are supported to varying degrees.
6
7The project mailing list is [syzkaller@googlegroups.com](https://groups.google.com/forum/#!forum/syzkaller).
8You can subscribe to it with a google account or by sending an email to syzkaller+subscribe@googlegroups.com.
9
10[List of found bugs](docs/found_bugs.md).
11
12## Documentation
13
14Initially, syzkaller was developed with Linux kernel fuzzing in mind, but now it's being extended to support other OS kernels as well.
15Most of the documentation at this moment is related to the Linux kernel.
16For other OS kernels check: [Akaros](docs/akaros/README.md), [FreeBSD](docs/freebsd.md), [Fuchsia](docs/fuchsia.md), [NetBSD](docs/netbsd.md), [Windows](docs/windows.md), [gVisor](docs/gvisor.md).
17
18- [How to install syzkaller](docs/setup.md)
19- [How to use syzkaller](docs/usage.md)
20- [How syzkaller works](docs/internals.md)
21- [How to contribute to syzkaller](docs/contributing.md)
22- [How to report Linux kernel bugs](docs/linux/reporting_kernel_bugs.md)
23
24## External Articles
25
26 - From [HardenedLinux](https://github.com/hardenedlinux) project:
27   - [Kernel QA with syzkaller and qemu](https://github.com/hardenedlinux/Debian-GNU-Linux-Profiles/blob/master/docs/harbian_qa/fuzz_testing/syzkaller_general.md) (tutorial on how to setup syzkaller with qemu)
28   - [Syzkaller crash DEMO](https://github.com/hardenedlinux/Debian-GNU-Linux-Profiles/blob/master/docs/harbian_qa/fuzz_testing/syzkaller_crash_demo.md) (tutorial on how to extend syzkaller with new syscalls)
29   - [Kernel debug tool with syzkaller](https://github.com/hardenedlinux/Debian-GNU-Linux-Profiles/blob/master/docs/harbian_qa/fuzz_testing/syz_debug.md) (debugging qemu VM created by syz-manager with gdb)
30   - [Explanation of some syzkaller internals](https://github.com/hardenedlinux/Debian-GNU-Linux-Profiles/blob/master/docs/harbian_qa/fuzz_testing/syz_analysis.md)
31   - [A example of fuzzing the ceph filesystem](https://github.com/hardenedlinux/Debian-GNU-Linux-Profiles/tree/master/docs/harbian_qa/fuzz_testing/syz_for_ceph)
32 - [Coverage-guided kernel fuzzing with syzkaller](https://lwn.net/Articles/677764/) (by David Drysdale)
33 - [ubsan, kasan, syzkaller und co](http://www.strlen.de/talks/debug-w-syzkaller.pdf) ([video](https://www.youtube.com/watch?v=Acp0A9X1254)) (by Florian Westphal)
34 - [Debugging a kernel crash found by syzkaller](http://vegardno.blogspot.de/2016/08/sync-debug.html) (by Quentin Casasnovas)
35 - [Linux Plumbers 2016 talk slides](https://docs.google.com/presentation/d/1iAuTvzt_xvDzS2misXwlYko_VDvpvCmDevMOq2rXIcA/edit?usp=sharing)
36 - [syzkaller: the next gen kernel fuzzer](https://www.slideshare.net/DmitryVyukov/syzkaller-the-next-gen-kernel-fuzzer) (basics of operations, tutorial on how to run syzkaller and how to extend it to fuzz new drivers)
37
38## Disclaimer
39
40This is not an official Google product.
41