mirror of
https://github.com/CISOfy/lynis.git
synced 2025-07-26 15:24:21 +02:00
Add a check for csf testing mode (#399)
This commit is contained in:
parent
1d78672b64
commit
360be2a700
@ -313,6 +313,13 @@
|
|||||||
FIREWALL_SOFTWARE="csf"
|
FIREWALL_SOFTWARE="csf"
|
||||||
Report "firewall_software[]=csf"
|
Report "firewall_software[]=csf"
|
||||||
Display --indent 2 --text "- Checking CSF status (configuration file)" --result "${STATUS_FOUND}" --color GREEN
|
Display --indent 2 --text "- Checking CSF status (configuration file)" --result "${STATUS_FOUND}" --color GREEN
|
||||||
|
LogText "Test: check if CSF testing mode is disabled"
|
||||||
|
FIND=$(${GREPBINARY} -P "^TESTING(\s|=)" ${FILE} | ${CUTBINARY} -d= -f2 | ${XARGSBINARY})
|
||||||
|
if [ "${FIND}" = "0" ]; then
|
||||||
|
Display --indent 4 --text "- Check if CSF testing mode is disabled" --result "${STATUS_OK}" --color GREEN
|
||||||
|
else
|
||||||
|
Display --indent 4 --text "- Check if CSF testing mode is disabled" --result "${STATUS_WARNING}" --color RED
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
LogText "Result: ${FILE} does NOT exist"
|
LogText "Result: ${FILE} does NOT exist"
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user