mirror of
https://github.com/aquasecurity/linux-bench.git
synced 2025-02-23 22:55:34 +01:00
11 lines
No EOL
387 B
Bash
11 lines
No EOL
387 B
Bash
#!/bin/bash
|
|
|
|
cat /etc/passwd | egrep -v '^(root|halt|sync|shutdown)' | awk -F: '($7 != "/sbin/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
|
|
if [ ! -h "$dir/.netrc" -a -f "$dir/.netrc" ]; then
|
|
echo ".netrc file $dir/.netrc exists"
|
|
fi
|
|
fi
|
|
done |