mirror of https://github.com/CISOfy/lynis.git
[MALW-3280] added additional BitDefender process
This commit is contained in:
parent
d61d7f5ab7
commit
c707b7d100
|
@ -102,28 +102,6 @@
|
||||||
if [ ${SKIPTEST} -eq 0 ]; then
|
if [ ${SKIPTEST} -eq 0 ]; then
|
||||||
FOUND=0
|
FOUND=0
|
||||||
|
|
||||||
# ESET security products
|
|
||||||
LogText "Test: checking process esets_daemon"
|
|
||||||
if IsRunning "esets_daemon"; then
|
|
||||||
FOUND=1
|
|
||||||
ESET_DAEMON_RUNNING=1
|
|
||||||
MALWARE_SCANNER_INSTALLED=1
|
|
||||||
if IsVerbose; then Display --indent 2 --text "- ${GEN_CHECKING} ESET daemon" --result "${STATUS_FOUND}" --color GREEN; fi
|
|
||||||
LogText "Result: found ESET security product"
|
|
||||||
Report "malware_scanner[]=eset"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Bitdefender (macOS)
|
|
||||||
LogText "Test: checking process epagd"
|
|
||||||
if IsRunning "epagd"; then
|
|
||||||
FOUND=1
|
|
||||||
BITDEFENDER_DAEMON_RUNNING=1
|
|
||||||
MALWARE_SCANNER_INSTALLED=1
|
|
||||||
if IsVerbose; then Display --indent 2 --text "- ${GEN_CHECKING} Bitdefender agent" --result "${STATUS_FOUND}" --color GREEN; fi
|
|
||||||
LogText "Result: found Bitdefender security product"
|
|
||||||
Report "malware_scanner[]=bitdefender"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Avast (macOS)
|
# Avast (macOS)
|
||||||
LogText "Test: checking process com.avast.daemon"
|
LogText "Test: checking process com.avast.daemon"
|
||||||
if IsRunning "com.avast.daemon"; then
|
if IsRunning "com.avast.daemon"; then
|
||||||
|
@ -146,6 +124,17 @@
|
||||||
Report "malware_scanner[]=avira"
|
Report "malware_scanner[]=avira"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Bitdefender (macOS)
|
||||||
|
LogText "Test: checking process epagd"
|
||||||
|
if IsRunning "bdagentd" || IsRunning "epagd"; then
|
||||||
|
FOUND=1
|
||||||
|
BITDEFENDER_DAEMON_RUNNING=1
|
||||||
|
MALWARE_SCANNER_INSTALLED=1
|
||||||
|
if IsVerbose; then Display --indent 2 --text "- ${GEN_CHECKING} Bitdefender agent" --result "${STATUS_FOUND}" --color GREEN; fi
|
||||||
|
LogText "Result: found Bitdefender security product"
|
||||||
|
Report "malware_scanner[]=bitdefender"
|
||||||
|
fi
|
||||||
|
|
||||||
# CrowdStrike falcon-sensor
|
# CrowdStrike falcon-sensor
|
||||||
LogText "Test: checking process falcon-sensor (CrowdStrike)"
|
LogText "Test: checking process falcon-sensor (CrowdStrike)"
|
||||||
if IsRunning "falcon-sensor"; then
|
if IsRunning "falcon-sensor"; then
|
||||||
|
@ -168,6 +157,17 @@
|
||||||
Report "malware_scanner[]=cylance-protect"
|
Report "malware_scanner[]=cylance-protect"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# ESET security products
|
||||||
|
LogText "Test: checking process esets_daemon"
|
||||||
|
if IsRunning "esets_daemon"; then
|
||||||
|
FOUND=1
|
||||||
|
ESET_DAEMON_RUNNING=1
|
||||||
|
MALWARE_SCANNER_INSTALLED=1
|
||||||
|
if IsVerbose; then Display --indent 2 --text "- ${GEN_CHECKING} ESET daemon" --result "${STATUS_FOUND}" --color GREEN; fi
|
||||||
|
LogText "Result: found ESET security product"
|
||||||
|
Report "malware_scanner[]=eset"
|
||||||
|
fi
|
||||||
|
|
||||||
# Kaspersky products
|
# Kaspersky products
|
||||||
LogText "Test: checking process wdserver or klnagent (Kaspersky)"
|
LogText "Test: checking process wdserver or klnagent (Kaspersky)"
|
||||||
# wdserver is too generic to match on, so we want to ensure that it is related to Kaspersky first
|
# wdserver is too generic to match on, so we want to ensure that it is related to Kaspersky first
|
||||||
|
|
Loading…
Reference in New Issue