1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
From: Richard Lewis <richard.lewis.debian@googlemail.com>
Date: Thu, 17 Oct 2024 22:30:29 +0100
Subject: chkrootkit: chk_cron
Forwarded: yes
(Forwarded by email: 21 Dec 2024)
---
chkrootkit | 13 ++++++-------
1 file changed, 6 insertions(+), 7 deletions(-)
diff --git a/chkrootkit b/chkrootkit
index 6f38925..344aec0 100755
--- a/chkrootkit
+++ b/chkrootkit
@@ -2547,23 +2547,22 @@ chk_slogin () {
chk_cron () {
STATUS=${NOT_INFECTED}
CRON_INFECTED_LABEL="/dev/hda|/dev/hda[0-7]|/dev/hdc0"
- CMD=`loc cron cron $pth`
+ CMD=$(loc cron cron "$pth")
if [ "${?}" -ne 0 ]; then
- CMD=`loc crond crond $pth`
+ CMD=$(loc crond crond "$pth")
fi
- if [ "${?}" -ne 0 ]
- then
- return ${NOT_FOUND}
+ if [ "${?}" -ne 0 ]; then
+ return "${NOT_FOUND}"
fi
if [ "${EXPERT}" = "t" ]; then
expertmode_output "${strings} -a ${CMD}"
return 5
fi
- if ${strings} -a ${CMD} | ${egrep} "${CRON_INFECTED_LABEL}" >/dev/null 2>&1
+ if "${strings}" -a "${CMD}" | ${egrep} "${CRON_INFECTED_LABEL}" >/dev/null 2>&1
then
STATUS=${INFECTED}
fi
- return ${STATUS}
+ return "${STATUS}"
}
chk_ifconfig () {
|