From 65a1909d680f9f03697a77b6ff0ad4651d5f34e4 Mon Sep 17 00:00:00 2001 From: Julien Moutinho Date: Mon, 10 May 2021 16:52:47 +0200 Subject: [PATCH] nixos/croc: harden ProtectProc --- nixos/modules/services/networking/croc.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/croc.nix b/nixos/modules/services/networking/croc.nix index b218fab2196d..97ba150f00e9 100644 --- a/nixos/modules/services/networking/croc.nix +++ b/nixos/modules/services/networking/croc.nix @@ -51,7 +51,7 @@ in ProtectKernelLogs = true; ProtectKernelModules = true; ProtectKernelTunables = true; - ProtectProc = "noaccess"; + ProtectProc = "invisible"; ProtectSystem = "strict"; RemoveIPC = true; RestrictAddressFamilies = [ "AF_INET" "AF_INET6" ];