mirror of https://github.com/CISOfy/lynis.git
Added MALW-3274 to detect McAfee VirusScan Command Line Scanner
This commit is contained in:
parent
ad5dc53a5f
commit
98f57d6d76
|
@ -265,6 +265,7 @@ MAIL-8838:test:security:mail_messaging::Check dovecot process:
|
|||
MAIL-8860:test:security:mail_messaging::Check Qmail status:
|
||||
MAIL-8880:test:security:mail_messaging::Check Sendmail status:
|
||||
MAIL-8920:test:security:mail_messaging::Check OpenSMTPD status:
|
||||
MALW-3274:test:security:malware::Check for McAfee VirusScan Command Line Scanner:
|
||||
MALW-3275:test:security:malware::Check for chkrootkit:
|
||||
MALW-3276:test:security:malware::Check for Rootkit Hunter:
|
||||
MALW-3278:test:security:malware::Check for LMD:
|
||||
|
|
|
@ -45,6 +45,24 @@
|
|||
TRENDMICRO_DSA_DAEMON_RUNNING=0
|
||||
#
|
||||
#################################################################################
|
||||
#
|
||||
# Test : MALW-3274
|
||||
# Description : Check for installed tool (McAfee VirusScan for Command Line)
|
||||
Register --test-no MALW-3274 --weight L --network NO --category security --description "Check for McAfee VirusScan Command Line"
|
||||
if [ ${SKIPTEST} -eq 0 ]; then
|
||||
LogText "Test: checking presence McAfee VirusScan for Command Line"
|
||||
if [ -x /usr/local/uvscan/uvscan ]; then
|
||||
Display --indent 2 --text "- ${GEN_CHECKING} McAfee VirusScan for Command Line" --result "${STATUS_FOUND}" --color GREEN
|
||||
LogText "Result: Found ${MCAFEECLBINARY}"
|
||||
MALWARE_SCANNER_INSTALLED=1
|
||||
AddHP 2 2
|
||||
Report "malware_scanner[]=mcafeecl"
|
||||
else
|
||||
LogText "Result: McAfee VirusScan for Command Line not found"
|
||||
fi
|
||||
fi
|
||||
#
|
||||
#################################################################################
|
||||
#
|
||||
# Test : MALW-3275
|
||||
# Description : Check for installed tool (chkrootkit)
|
||||
|
|
Loading…
Reference in New Issue