added support to osquery

This commit is contained in:
Toni de la Fuente 2016-02-29 17:16:50 -05:00
parent 13cfbd3019
commit cb73eed69b
1 changed files with 17 additions and 0 deletions

View File

@ -268,6 +268,23 @@
#
#################################################################################
#
# Test : FINT-4351
# Description : Check if osquery system integrity tool is running
Register --test-no FINT-4351 --weight L --network NO --description "osqueryd syscheck daemon running"
if [ ${SKIPTEST} -eq 0 ]; then
LogText "Test: Checking if osqueryd syscheck daemon is running"
IsRunning osqueryd
if [ ${RUNNING} -eq 1 ]; then
LogText "Result: syscheck (osquery) installed"
FILE_INT_TOOL="osquery"
FILE_INT_TOOL_FOUND=1
Display --indent 4 --text "- osquery (syscheck)" --result FOUND --color GREEN
else
LogText "Result: syscheck (osquery) not installed"
fi
fi
#
#################################################################################
Report "file_integrity_tool=${FILE_INT_TOOL}"
Report "file_integrity_tool_installed=${FILE_INT_TOOL_FOUND}"