Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Boelen <michael.boelen@cisofy.com>2016-10-17 21:45:53 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2016-10-17 21:45:53 +0300
commit9a5b5e5a428e73d49ba186b63eb994edd827d132 (patch)
tree5fd7bc22baa6dd66fb959e2bbea14bb2813a80f2 /include/tests_malware
parent7b8c04c3b1e01c3cbf399002318523e5cad6d445 (diff)
[MALW-3280] Added support for Avast on macOS
Diffstat (limited to 'include/tests_malware')
-rw-r--r--include/tests_malware14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/tests_malware b/include/tests_malware
index 0cc9424f..d5f26e9f 100644
--- a/include/tests_malware
+++ b/include/tests_malware
@@ -26,6 +26,7 @@
#
#################################################################################
#
+ AVAST_DAEMON_RUNNING=0
CLAMD_RUNNING=0
CLAMSCAN_INSTALLED=0
ESET_DAEMON_RUNNING=0
@@ -109,6 +110,19 @@
Report "malware_scanner[]=eset"
fi
+ # Avast (macOS)
+ LogText "Test: checking process com.avast.daemon"
+ IsRunning com.avast.daemon
+ if [ ${RUNNING} -eq 1 ]; then
+ FOUND=1
+ Display --indent 2 --text "- ${GEN_CHECKING} Avast daemon" --result "${STATUS_FOUND}" --color GREEN
+ LogText "Result: found Avast security product"
+ AVAST_DAEMON_RUNNING=1
+ MALWARE_SCANNER_INSTALLED=1
+ AddHP 2 2
+ Report "malware_scanner[]=avast"
+ fi
+
# McAfee products
LogText "Test: checking process cma or cmdagent (McAfee)"
# cma is too generic to match on, so we want to ensure that it is related to McAfee first