aboutsummaryrefslogtreecommitdiffstats
path: root/cron-sh/diff_check.sh
diff options
context:
space:
mode:
authorFrederic Lepied <flepied@mandriva.com>2002-09-03 06:57:23 +0000
committerFrederic Lepied <flepied@mandriva.com>2002-09-03 06:57:23 +0000
commit4a6f85e67a2030fe38b860fedb6628433bcabeb5 (patch)
tree310043ae0bf5f913a6dcb9674e871c6c0c6b2d70 /cron-sh/diff_check.sh
parent7479e4317511d83c372c554023434009e9519ceb (diff)
downloadmsec-4a6f85e67a2030fe38b860fedb6628433bcabeb5.tar
msec-4a6f85e67a2030fe38b860fedb6628433bcabeb5.tar.gz
msec-4a6f85e67a2030fe38b860fedb6628433bcabeb5.tar.bz2
msec-4a6f85e67a2030fe38b860fedb6628433bcabeb5.tar.xz
msec-4a6f85e67a2030fe38b860fedb6628433bcabeb5.zip
CHECK_SUID_GROUP => CHECK_SGID
Diffstat (limited to 'cron-sh/diff_check.sh')
-rwxr-xr-xcron-sh/diff_check.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/cron-sh/diff_check.sh b/cron-sh/diff_check.sh
index ac7c10c..084de68 100755
--- a/cron-sh/diff_check.sh
+++ b/cron-sh/diff_check.sh
@@ -38,16 +38,16 @@ if [[ ${CHECK_SUID_ROOT} == yes ]]; then
fi
-### New Suid group files detection
-if [[ ${CHECK_SUID_GROUP} == yes ]]; then
+### New Sgid files detection
+if [[ ${CHECK_SGID} == yes ]]; then
- if [[ -f ${SUID_GROUP_YESTERDAY} ]]; then
- if ! diff -u ${SUID_GROUP_YESTERDAY} ${SUID_GROUP_TODAY} > ${SUID_GROUP_DIFF}; then
+ if [[ -f ${SGID_YESTERDAY} ]]; then
+ if ! diff -u ${SGID_YESTERDAY} ${SGID_TODAY} > ${SGID_DIFF}; then
printf "\nSecurity Warning: Changes in Sgid files found :\n" >> ${TMP}
- grep '^+' ${SUID_GROUP_DIFF} | grep -vw "^+++ " | sed 's|^.||' | while read file; do
+ grep '^+' ${SGID_DIFF} | grep -vw "^+++ " | sed 's|^.||' | while read file; do
printf "\t\t- Newly added sgid file : ${file}\n"
done >> ${TMP}
- grep '^-' ${SUID_GROUP_DIFF} | grep -vw "^--- " | sed 's|^.||' | while read file; do
+ grep '^-' ${SGID_DIFF} | grep -vw "^--- " | sed 's|^.||' | while read file; do
printf "\t\t- No longer present sgid file : ${file}\n"
done >> ${TMP}
fi