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:
authorMichael Boelen <michael.boelen@cisofy.com>2016-07-31 14:29:23 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2016-07-31 14:29:23 +0300
commit23e400ea9e322bcafbed181eee7d7438060c8f30 (patch)
treea3c59900564324fcecfb4e03dae4f2e530709065 /include
parent1b3cdb98838695b0b210e64477ebfe9a1f97e233 (diff)
More style and text changes, and removed warning
Diffstat (limited to 'include')
-rw-r--r--include/tests_authentication19
1 files changed, 9 insertions, 10 deletions
diff --git a/include/tests_authentication b/include/tests_authentication
index 06a89395..52432352 100644
--- a/include/tests_authentication
+++ b/include/tests_authentication
@@ -194,29 +194,28 @@
#################################################################################
#
# Test : AUTH-9222
- # Description : Check for non unique groups
- Register --test-no AUTH-9222 --weight L --network NO --category security --description "Check for non unique groups"
+ # Description : Check unique group IDs
+ Register --test-no AUTH-9222 --weight L --network NO --category security --description "Check unique groups (IDs)"
if [ ${SKIPTEST} -eq 0 ]; then
LogText "Test: Checking for non unique group ID's in /etc/group"
- FIND=`grep -v '^#' /etc/group | grep -v '^$' | awk -F: '{ print $3 }' | sort | uniq -d`
+ FIND=$(grep -v '^#' /etc/group | grep -v '^$' | awk -F: '{ print $3 }' | sort | uniq -d)
if [ "${FIND}" = "" ]; then
- Display --indent 2 --text "- Checking non unique group ID's" --result "${STATUS_OK}" --color GREEN
+ Display --indent 2 --text "- Unique group IDs" --result "${STATUS_OK}" --color GREEN
LogText "Result: All group ID's are unique"
- else
- Display --indent 2 --text "- Checking non unique group ID's" --result "${STATUS_WARNING}" --color RED
+ else
+ Display --indent 2 --text "- Unique group IDs" --result "${STATUS_WARNING}" --color RED
LogText "Result: Found the same group ID multiple times"
LogText "Output: ${FIND}"
- ReportWarning ${TEST_NO} "H" "Found multiple groups with same group ID"
- #ReportSuggestion ${TEST_NO} "Check your /etc/group file and correct inconsistencies"
+ ReportSuggestion ${TEST_NO} "Check your /etc/group file and correct any inconsistencies"
fi
fi
#
#################################################################################
#
# Test : AUTH-9226
- # Description : Check non unique group names
+ # Description : Check unique group names
if [ -f /etc/group ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
- Register --test-no AUTH-9226 --preqs-met ${PREQS_MET} --weight L --network NO --category security --description "Check non unique group names"
+ Register --test-no AUTH-9226 --preqs-met ${PREQS_MET} --weight L --network NO --category security --description "Check unique group names"
if [ ${SKIPTEST} -eq 0 ]; then
LogText "Test: Checking for non unique group names in /etc/group"
FIND=$(grep -v '^#' /etc/group | grep -v '^$' | awk -F: '{ print $1 }' | sort | uniq -d)