Article 55AKY Unable to run a script of CIS (6.2.8)

Unable to run a script of CIS (6.2.8)

by
z_haseeb
from LinuxQuestions.org on (#55AKY)
I have few script of CIS which are unable to work. One script is a reference.

ls -l 6.2.8
-rwxrwxrwx 1 root root 818 Jul 2 23:48 6.2.8

Quote:
cat 6.2.8
#!/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
dirperm=`ls -ld $dir | cut -f1 -d" "`
if [ `echo $dirperm | cut -c6` != "-" ]; then
echo "Group Write permission set on the home directory ($dir) of user
$user"
fi
if [ `echo $dirperm | cut -c8` != "-" ]; then
echo "Other Read permission set on the home directory ($dir) of user
$user"
fi
if [ `echo $dirperm | cut -c9` != "-" ]; then
echo "Other Write permission set on the home directory ($dir) of user
$user"
fi
if [ `echo $dirperm | cut -c10` != "-" ]; then
echo "Other Execute permission set on the home directory ($dir) of user
$user"
fi
fi
done
I have also tried a script from ( https://www.stigviewer.com/stig/sola...inding/V-48133 ) but that script too could not word. Below is script

Quote:
# for dir in `logins -ox |\
awk -F: '($8 == "PS") { print $6 }'`; do
find ${dir} -type d -prune \( -perm -g+w -o -perm -o+r -o -perm -o+w -o -perm -o+x \) -ls
done
latest?d=yIl2AUoC8zA latest?i=R4BvVfy9wPo:HVp-SxB5F-s:F7zBnMy latest?i=R4BvVfy9wPo:HVp-SxB5F-s:V_sGLiP latest?d=qj6IDK7rITs latest?i=R4BvVfy9wPo:HVp-SxB5F-s:gIN9vFwR4BvVfy9wPo
External Content
Source RSS or Atom Feed
Feed Location https://feeds.feedburner.com/linuxquestions/latest
Feed Title LinuxQuestions.org
Feed Link https://www.linuxquestions.org/questions/
Reply 0 comments