From 98f6308f4c00a818db8dece52596efbeb2db0512 Mon Sep 17 00:00:00 2001 From: Eugeni Dodonov Date: Tue, 9 Feb 2010 20:30:38 +0000 Subject: Improved description when unowned or world-writable files are found --- cron-sh/scripts/01_files.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cron-sh/scripts') diff --git a/cron-sh/scripts/01_files.sh b/cron-sh/scripts/01_files.sh index 698b8ef..f3853ad 100755 --- a/cron-sh/scripts/01_files.sh +++ b/cron-sh/scripts/01_files.sh @@ -111,15 +111,15 @@ fi ### Writable files detection if check_is_enabled "${CHECK_WRITABLE}" ; then - Diffcheck ${WRITABLE_TODAY} ${WRITABLE_YESTERDAY} ${WRITABLE_DIFF} "World Writable files" + Diffcheck ${WRITABLE_TODAY} ${WRITABLE_YESTERDAY} ${WRITABLE_DIFF} "World Writable permissions on files" Count ${INFOS} ${WRITABLE_TODAY} "Total of World Writable files" fi ### Search Non Owned files if check_is_enabled "${CHECK_UNOWNED}" ; then - Diffcheck ${UNOWNED_USER_TODAY} ${UNOWNED_USER_YESTERDAY} ${UNOWNED_USER_DIFF} "Un-owned files" + Diffcheck ${UNOWNED_USER_TODAY} ${UNOWNED_USER_YESTERDAY} ${UNOWNED_USER_DIFF} "Unknown owner for files" Count ${INFOS} ${UNOWNED_USER_TODAY} "Total of Un-owned files" - Diffcheck ${UNOWNED_GROUP_TODAY} ${UNOWNED_GROUP_YESTERDAY} ${UNOWNED_GROUP_DIFF} "Un-owned group files" + Diffcheck ${UNOWNED_GROUP_TODAY} ${UNOWNED_GROUP_YESTERDAY} ${UNOWNED_GROUP_DIFF} "Unknown group for files" Count ${INFOS} ${UNOWNED_GROUP_TODAY} "Total of Un-owned group files" fi -- cgit v1.2.1