2014-08-26 17:33:55 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
# Lynis
|
|
|
|
# ------------------
|
|
|
|
#
|
2015-01-03 12:45:22 +01:00
|
|
|
# Copyright 2007-2015, Michael Boelen (michael@rootkit.nl), The Netherlands
|
2014-08-26 17:33:55 +02:00
|
|
|
# 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
|
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
#
|
2014-09-15 12:01:09 +02:00
|
|
|
InsertSection "File Permissions"
|
2014-08-26 17:33:55 +02:00
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
# 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
|
2014-09-15 12:01:09 +02:00
|
|
|
Display --indent 2 --text "- Starting file permissions check"
|
2014-08-26 17:33:55 +02:00
|
|
|
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
|
2014-09-15 12:01:09 +02:00
|
|
|
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
|
2014-08-26 17:33:55 +02:00
|
|
|
done
|
2014-09-15 12:01:09 +02:00
|
|
|
fi
|
2014-08-26 17:33:55 +02:00
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
|
|
|
|
wait_for_keypress
|
|
|
|
|
|
|
|
#
|
|
|
|
#================================================================================
|
2015-01-03 12:45:22 +01:00
|
|
|
# Lynis - Copyright 2007-2015, Michael Boelen - www.rootkit.nl - The Netherlands
|