mirror of https://github.com/CISOfy/lynis.git
[MALW-3280] added Avira detection
This commit is contained in:
parent
61f96d9b1c
commit
4be6b958e4
|
@ -27,6 +27,7 @@
|
|||
#################################################################################
|
||||
#
|
||||
AVAST_DAEMON_RUNNING=0
|
||||
AVIRA_DAEMON_RUNNING=0
|
||||
BITDEFENDER_DAEMON_RUNNING=0
|
||||
CLAMD_RUNNING=0
|
||||
CLAMSCAN_INSTALLED=0
|
||||
|
@ -137,6 +138,19 @@
|
|||
Report "malware_scanner[]=avast"
|
||||
fi
|
||||
|
||||
# Avira
|
||||
LogText "Test: checking process Avira daemon"
|
||||
IsRunning avqmd
|
||||
if [ ${RUNNING} -eq 1 ]; then
|
||||
FOUND=1
|
||||
Display --indent 2 --text "- ${GEN_CHECKING} Avira daemon" --result "${STATUS_FOUND}" --color GREEN
|
||||
LogText "Result: found Avira security product"
|
||||
AVIRA_DAEMON_RUNNING=1
|
||||
MALWARE_SCANNER_INSTALLED=1
|
||||
AddHP 2 2
|
||||
Report "malware_scanner[]=avira"
|
||||
fi
|
||||
|
||||
# Cylance (macOS)
|
||||
LogText "Test: checking process CylanceSvc"
|
||||
IsRunning CylanceSvc
|
||||
|
|
Loading…
Reference in New Issue