aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/report/linux.go
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2021-08-31 12:45:48 +0000
committerAleksandr Nogikh <wp32pw@gmail.com>2021-08-31 16:02:23 +0200
commit7eb7e15259fddd67759f90feb2b016da878f76c7 (patch)
tree09fa994d509640d684ca005f5825fb9300668780 /pkg/report/linux.go
parent18876b0f6970ae5395ecbbd69d72404763153e19 (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.go1
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
}