From 295318d5627b0deb00d770d748abbd71d163e398 Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Thu, 28 Dec 2023 13:42:54 +0100 Subject: [PATCH] Re-enable dumping prevention --- agent/processsecurity/unix.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/agent/processsecurity/unix.go b/agent/processsecurity/unix.go index 45a8e62..71cf416 100644 --- a/agent/processsecurity/unix.go +++ b/agent/processsecurity/unix.go @@ -6,11 +6,11 @@ import ( "time" "github.com/godbus/dbus/v5" + "golang.org/x/sys/unix" ) func DisableDumpable() error { - // return unix.Prctl(unix.PR_SET_DUMPABLE, 0, 0, 0, 0) - return nil + return unix.Prctl(unix.PR_SET_DUMPABLE, 0, 0, 0, 0) } func MonitorLocks(onlock func()) error {