mirror of
https://github.com/ovh/debian-cis.git
synced 2024-11-22 21:47:02 +01:00
IMP(13.13): improve exception detection
This commit is contained in:
parent
0d3c8ec654
commit
43c1dcf85b
@ -31,9 +31,15 @@ audit () {
|
||||
if [ "$USERID" -ge 500 ] && [ -d "$DIR" ] && [ "$USER" != "nfsnobody" ]; then
|
||||
OWNER=$(stat -L -c "%U" "$DIR")
|
||||
if [ "$OWNER" != "$USER" ]; then
|
||||
if grep -qw "$DIR:$USER:$OWNER" <<< "$EXCEPTIONS"; then
|
||||
EXCEP_FOUND=0
|
||||
for excep in $EXCEPTIONS; do
|
||||
if [ "$DIR:$USER:$OWNER" == "$excep" ]; then
|
||||
ok "The home directory ($DIR) of user $USER is owned by $OWNER but is part of exceptions ($DIR:$USER:$OWNER)."
|
||||
else
|
||||
EXCEP_FOUND=1
|
||||
break
|
||||
fi
|
||||
done
|
||||
if [ "$EXCEP_FOUND" -eq 0 ]; then
|
||||
crit "The home directory ($DIR) of user $USER is owned by $OWNER."
|
||||
ERRORS=$((ERRORS+1))
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user