aboutsummaryrefslogtreecommitdiffstats
path: root/syz-hub/http.go
Commit message (Collapse)AuthorAgeFilesLines
* pkg/tool: add ServeHTTP functionDmitry Vyukov2025-12-291-15/+0
| | | | Dedup code in syz-ci and syz-hub.
* all: apply linter auto fixesTaras Madan2025-07-171-1/+1
| | | | ./tools/syz-env bin/golangci-lint run ./... --fix
* all: show manager url in syz-hubJoey Jiao2025-03-171-0/+4
|
* syz-hub: show domain on web pageDmitry Vyukov2020-12-031-7/+7
| | | | Update #2095
* gometalinter: check dot importsDmitry Vyukov2018-05-031-6/+6
| | | | Update #538
* all: fix gometalinter warningsDmitry Vyukov2018-03-081-1/+1
| | | | Fix typos, non-canonical code, remove dead code, etc.
* syz-manager, syz-hub: share repros between managers via hubDmitry Vyukov2017-08-071-10/+24
| | | | | | | | | | | | | | | | | Currently hub allows managers to exchange programs from corpus. But reproducers are not exchanged and we don't know if a crash happens on other managers as well or not. Allow hub to exchange reproducers. Reproducers are stored in a separate db file with own sequence numbers. This allows to throttle distribution of reproducers to managers, so that they are not overloaded with reproducers and don't lose them on restarts. Based on patch by Andrey Konovalov: https://github.com/google/syzkaller/pull/325 Fixes #282
* syz-hub: fix copy-paste error in httpSummary()Alexander Popov2017-06-141-1/+1
| | | | Also mention Alexander Popov in AUTHORS and CONTRIBUTORS.
* pkg/log: move from logDmitry Vyukov2017-06-031-1/+1
|
* syz-hub: use db packageDmitry Vyukov2017-01-161-2/+2
| | | | | | Hub accumulates tremendous of programs. Storing all them in separate files can be very slow. Use the new db package to store corpus in a single file.
* syz-hub: add programDmitry Vyukov2016-11-171-0/+152
syz-hub is used to exchange programs between syz-managers.