From 08fd72786c4bec11fbc700a07b47241b2684cfb6 Mon Sep 17 00:00:00 2001 From: "thibault.dewailly" Date: Thu, 21 Apr 2016 18:15:22 +0200 Subject: [PATCH] Fixed point 9.1.8 cron rights as a chmod 600 disabled the cron.allow features (file must be world readable) --- bin/hardening/9.1.8_cron_users.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/hardening/9.1.8_cron_users.sh b/bin/hardening/9.1.8_cron_users.sh index b89ad3d..e7a9e51 100755 --- a/bin/hardening/9.1.8_cron_users.sh +++ b/bin/hardening/9.1.8_cron_users.sh @@ -13,7 +13,7 @@ set -u # One variable unset, it's over FILES_ABSENT='/etc/cron.deny /etc/at.deny' FILES_PRESENT='/etc/cron.allow /etc/at.allow' -PERMISSIONS='600' +PERMISSIONS='644' USER='root' GROUP='root'