aboutsummaryrefslogtreecommitdiffstats
path: root/cron-sh/security.sh
diff options
context:
space:
mode:
Diffstat (limited to 'cron-sh/security.sh')
-rwxr-xr-xcron-sh/security.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/cron-sh/security.sh b/cron-sh/security.sh
index 5b974a4..6cc6b79 100755
--- a/cron-sh/security.sh
+++ b/cron-sh/security.sh
@@ -36,6 +36,8 @@ RPM_VA_DIFF="/var/log/security/rpm-va.diff"
export RPM_QA_TODAY="/var/log/security/rpm-qa.today"
RPM_QA_YESTERDAY="/var/log/security/rpm-qa.yesterday"
RPM_QA_DIFF="/var/log/security/rpm-qa.diff"
+export CHKROOTKIT_TODAY="/var/log/security/chkrootkit.today"
+CHKROOTKIT_YESTERDAY="/var/log/security/chkrootkit.yesterday"
# Modified filters coming from debian security scripts.
CS_NFSAFS='(nfs|afs|xfs|coda)'
@@ -86,6 +88,10 @@ if [[ -f ${RPM_QA_TODAY} ]]; then
mv -f ${RPM_QA_TODAY} ${RPM_QA_YESTERDAY}
fi
+if [[ -f ${CHKROOTKIT_TODAY} ]]; then
+ mv -f ${CHKROOTKIT_TODAY} ${CHKROOTKIT_YESTERDAY}
+fi
+
netstat -pvlA inet 2> /dev/null > ${OPEN_PORT_TODAY};
# Hard disk related file check; the less priority the better...
@@ -135,6 +141,13 @@ if [[ ${RPM_CHECK} == yes ]]; then
nice --adjustment=+19 rpm -V `cut -f 1 < ${RPM_QA_TODAY} | grep -v '^dev-[0-9]'` | grep '^..5' | sed 's/...........//' | sort > ${RPM_VA_TODAY}
fi
+### chkrootkit checks
+if [[ ${CHKROOTKIT_CHECK} == yes ]]; then
+ if [ -x /usr/sbin/chkrootkit ]; then
+ /usr/sbin/chkrootkit > ${CHKROOTKIT_TODAY}
+ fi
+fi
+
### Functions ###
Syslog() {