Show non-root files on stig test

This commit is contained in:
Bob Mottram 2017-08-07 10:34:49 +01:00
parent b654846c86
commit b8a873f9d2
1 changed files with 42 additions and 36 deletions

View File

@ -2,61 +2,67 @@
if [ -d "/bin" ];then
COUNT=$(find -L /bin \! -user root -exec ls -l {} \; |wc -l)
COUNT=$(find -L /bin \! -user root -exec ls -l {} \; |wc -l)
if [ $COUNT -eq 0 ];then
:
else
exit 1
fi
if [ $COUNT -eq 0 ];then
:
else
find -L /bin \! -user root -exec ls -l {} \;
exit 1
fi
fi
if [ -d "/usr/bin" ];then
COUNT=$(find -L /usr/bin \! -user root -exec ls -l {} \; |wc -l)
COUNT=$(find -L /usr/bin \! -user root -exec ls -l {} \; |wc -l)
if [ $COUNT -eq 0 ];then
:
else
exit 1
fi
if [ $COUNT -eq 0 ];then
:
else
find -L /usr/bin \! -user root -exec ls -l {} \;
exit 1
fi
fi
if [ -d "/usr/local/bin" ];then
COUNT=$(find -L /usr/local/bin \! -user root -exec ls -l {} \; |wc -l)
COUNT=$(find -L /usr/local/bin \! -user root -exec ls -l {} \; |wc -l)
if [ $COUNT -eq 0 ];then
:
else
exit 1
fi
if [ $COUNT -eq 0 ];then
:
else
find -L /usr/local/bin \! -user root -exec ls -l {} \;
exit 1
fi
fi
if [ -d "/sbin" ];then
COUNT=$(find -L /sbin \! -user root -exec ls -l {} \; |wc -l)
COUNT=$(find -L /sbin \! -user root -exec ls -l {} \; |wc -l)
if [ $COUNT -eq 0 ];then
:
else
exit 1
fi
if [ $COUNT -eq 0 ];then
:
else
find -L /sbin \! -user root -exec ls -l {} \;
exit 1
fi
fi
if [ -d "/usr/sbin" ];then
COUNT=$(find -L /usr/sbin \! -user root -exec ls -l {} \; |wc -l)
COUNT=$(find -L /usr/sbin \! -user root -exec ls -l {} \; |wc -l)
if [ $COUNT -eq 0 ];then
:
else
exit 1
fi
if [ $COUNT -eq 0 ];then
:
else
find -L /usr/sbin \! -user root -exec ls -l {} \;
exit 1
fi
fi
if [ -d "/usr/local/sbin" ];then
COUNT=$(find -L /usr/local/sbin \! -user root -exec ls -l {} \; |wc -l)
COUNT=$(find -L /usr/local/sbin \! -user root -exec ls -l {} \; |wc -l)
if [ $COUNT -eq 0 ];then
:
else
exit 1
fi
if [ $COUNT -eq 0 ];then
:
else
find -L /usr/local/sbin \! -user root -exec ls -l {} \;
exit 1
fi
fi