blob: 47b3248c9835792d20f6097e87708390657bf5ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Syzbot DB export
Every week syzbot runs syz-db-export to export its databases:
1. [Upstream Linux](https://syzkaller.appspot.com/upstream)
db is [here](https://storage.googleapis.com/artifacts.syzkaller.appspot.com/shared-files/repro-export/upstream.tar.gz).
2. Contact us if you want see others.
## Export structure
DB currently includes:
1. Bugs descriptions.
2. First C-Reproducer for every bug.
It doesn't include:
1. Second+ C-Reproducers for every bug.
2. Syz-Reproducers.
3. Any reproducer related metadata (like triggering requirements).
## How to export more data
The best way to see more data exported is to modify the tool and send us PR with your changes.
To reproduce locally what syzbot is doing for upstream Linux:
```golang
go run ./tools/syz-db-export/... -namespace upstream
```
Extending tools/syz-db-export you can teach syzbot to export more.
|