mirror of
https://github.com/aquasecurity/linux-bench.git
synced 2025-02-23 14:45:33 +01:00
21 lines
661 B
Bash
21 lines
661 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
grep -E -v '^(halt|sync|shutdown)' /etc/passwd | awk -F: '($7 != "'"$(which
|
||
|
nologin)"'" && $7 != "/bin/false") { print $1 " " $6 }' | while read user
|
||
|
dir; do
|
||
|
if [ ! -d "$dir" ]; then
|
||
|
echo "The home directory ($dir) of user $user does not exist."
|
||
|
else
|
||
|
for file in $dir/.[A-Za-z0-9]*; do
|
||
|
if [ ! -h "$file" -a -f "$file" ]; then
|
||
|
fileperm=$(ls -ld $file | cut -f1 -d" ")
|
||
|
if [ $(echo $fileperm | cut -c6) != "-" ]; then
|
||
|
echo "Group Write permission set on file $file"
|
||
|
fi
|
||
|
if [ $(echo $fileperm | cut -c9) != "-" ]; then
|
||
|
echo "Other Write permission set on file $file"
|
||
|
fi
|
||
|
fi
|
||
|
done
|
||
|
fi
|
||
|
done
|