Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormboelen <michael@cisofy.com>2014-08-26 19:33:55 +0400
committermboelen <michael@cisofy.com>2014-08-26 19:33:55 +0400
commitc0ae2e217b7f1fb0171017ce5afb8eb8898470db (patch)
tree545aa150c35c5fb74d7bb4c2d3b0ae41cfa7b4e5 /include/tests_file_permissions
Initial import
Diffstat (limited to 'include/tests_file_permissions')
-rw-r--r--include/tests_file_permissions59
1 files changed, 59 insertions, 0 deletions
diff --git a/include/tests_file_permissions b/include/tests_file_permissions
new file mode 100644
index 00000000..b0ea1d73
--- /dev/null
+++ b/include/tests_file_permissions
@@ -0,0 +1,59 @@
+#!/bin/sh
+
+#################################################################################
+#
+# Lynis
+# ------------------
+#
+# Copyright 2007-2014, Michael Boelen (michael@rootkit.nl), The Netherlands
+# Web site: http://www.rootkit.nl
+#
+# Lynis comes with ABSOLUTELY NO WARRANTY. This is free software, and you are
+# welcome to redistribute it under the terms of the GNU General Public License.
+# See LICENSE file for usage of this software.
+#
+#################################################################################
+#
+# File permissions
+#
+#################################################################################
+#
+ InsertSection "System Tools"
+#
+#################################################################################
+#
+ # Test : FILE-7524
+ # Description : Perform file permissions check
+ Register --test-no FILE-7524 --weight L --network NO --description "Perform file permissions check"
+ if [ ${SKIPTEST} -eq 0 ]; then
+ Display --indent 2 --text "- Starting file permissions check..."
+ logtext "Test: Checking file permissions"
+ logtext "Using profile ${PROFILE} for baseline."
+ FIND=`cat ${PROFILE} | egrep '^permfile:|^permdir:' | cut -d: -f2`
+ for I in ${FIND}; do
+ logtext "Checking ${I}"
+ CheckFilePermissions ${I}
+ logtext " Expected permissions: ${PROFILEVALUE}"
+ logtext " Actual permissions: ${FILEVALUE}"
+ logtext " Result: $PERMS"
+ if [ "${PERMS}" = "FILE_NOT_FOUND" ]; then
+ Display --indent 4 --text "${I}" --result "NOT FOUND" --color WHITE
+ elif [ "${PERMS}" = "OK" ]; then
+ Display --indent 4 --text "${I}" --result OK --color GREEN
+ elif [ "${PERMS}" = "BAD" ]; then
+ Display --indent 4 --text "${I}" --result WARNING --color RED
+ ReportWarning ${TEST_NO} "M" "Incorrect permissions for file ${I}"
+ else
+ logtext "UNKNOWN status for file"
+ fi
+ done
+ fi
+#
+#################################################################################
+#
+
+wait_for_keypress
+
+#
+#================================================================================
+# Lynis - Copyright 2007-2014, Michael Boelen - www.rootkit.nl - The Netherlands