From 7eb7e15259fddd67759f90feb2b016da878f76c7 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Tue, 31 Aug 2021 12:45:48 +0000 Subject: 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. --- pkg/report/linux.go | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg/report/linux.go') 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 } -- cgit mrf-deployment