diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2021-08-31 12:45:48 +0000 |
|---|---|---|
| committer | Aleksandr Nogikh <wp32pw@gmail.com> | 2021-08-31 16:02:23 +0200 |
| commit | 7eb7e15259fddd67759f90feb2b016da878f76c7 (patch) | |
| tree | 09fa994d509640d684ca005f5825fb9300668780 /pkg/report/linux.go | |
| parent | 18876b0f6970ae5395ecbbd69d72404763153e19 (diff) | |
pkg/report: suppress reports with detected stack smashing
Logs containing "*** stack smashing detected ***: terminated" are not of
particular interest, as this indicates syz-executor corruption.
Suppress bug reports in this case.
Diffstat (limited to 'pkg/report/linux.go')
| -rw-r--r-- | pkg/report/linux.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/report/linux.go b/pkg/report/linux.go index 9992d3a71..895760b8c 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -127,6 +127,7 @@ func ctorLinux(cfg *config) (reporterImpl, []string, error) { "lowmemorykiller: Killing 'syz-fuzzer'", "lowmemorykiller: Killing 'sshd'", "INIT: PANIC: segmentation violation!", + "\\*\\*\\* stack smashing detected \\*\\*\\*: terminated", } return ctx, suppressions, nil } |
