mirror of https://github.com/CISOfy/lynis.git
Style changes
This commit is contained in:
parent
019203e7e8
commit
532e242a2f
|
@ -82,12 +82,12 @@
|
|||
done
|
||||
if [ "${AIDECONFIG}" = "" ]; then
|
||||
Display --indent 6 --text "- AIDE config file" --result "${STATUS_NOT_FOUND}" --color YELLOW
|
||||
else
|
||||
else
|
||||
LogText "Checking configuration file ${AIDECONFIG} for errors"
|
||||
FIND=$(${AIDEBINARY} --config=${AIDECONFIG} -D)
|
||||
if [ $? -eq 0 ]; then
|
||||
Display --indent 6 --text "- AIDE config file" --result "${STATUS_FOUND}" --color GREEN
|
||||
else
|
||||
else
|
||||
Display --indent 6 --text "- AIDE config file" --result "${STATUS_WARNING}" --color YELLOW
|
||||
ReportSuggestion "${TEST_NO}" "Check the AIDE configuration file as it may contain errors"
|
||||
fi
|
||||
|
@ -107,7 +107,7 @@
|
|||
FILE_INT_TOOL="osiris"
|
||||
FILE_INT_TOOL_FOUND=1
|
||||
Display --indent 4 --text "- Osiris" --result "${STATUS_FOUND}" --color GREEN
|
||||
else
|
||||
else
|
||||
LogText "Result: Osiris is not installed"
|
||||
if IsVerbose; then Display --indent 4 --text "- Osiris" --result "${STATUS_NOT_FOUND}" --color WHITE; fi
|
||||
fi
|
||||
|
@ -126,7 +126,7 @@
|
|||
FILE_INT_TOOL="samhain"
|
||||
FILE_INT_TOOL_FOUND=1
|
||||
Display --indent 4 --text "- Samhain" --result "${STATUS_FOUND}" --color GREEN
|
||||
else
|
||||
else
|
||||
LogText "Result: Samhain is not installed"
|
||||
if IsVerbose; then Display --indent 4 --text "- Samhain" --result "${STATUS_NOT_FOUND}" --color WHITE; fi
|
||||
fi
|
||||
|
@ -145,7 +145,7 @@
|
|||
FILE_INT_TOOL="tripwire"
|
||||
FILE_INT_TOOL_FOUND=1
|
||||
Display --indent 4 --text "- Tripwire" --result "${STATUS_FOUND}" --color GREEN
|
||||
else
|
||||
else
|
||||
LogText "Result: Tripwire is not installed"
|
||||
if IsVerbose; then Display --indent 4 --text "- Tripwire" --result "${STATUS_NOT_FOUND}" --color WHITE; fi
|
||||
fi
|
||||
|
@ -165,7 +165,7 @@
|
|||
FILE_INT_TOOL="ossec-syscheck"
|
||||
FILE_INT_TOOL_FOUND=1
|
||||
Display --indent 4 --text "- OSSEC (syscheck)" --result "${STATUS_FOUND}" --color GREEN
|
||||
else
|
||||
else
|
||||
LogText "Result: syscheck (OSSEC) not installed"
|
||||
if IsVerbose; then Display --indent 4 --text "- OSSEC" --result "${STATUS_NOT_FOUND}" --color WHITE; fi
|
||||
fi
|
||||
|
@ -185,7 +185,7 @@
|
|||
FILE_INT_TOOL="mtree"
|
||||
FILE_INT_TOOL_FOUND=1
|
||||
Display --indent 4 --text "- mtree" --result "${STATUS_FOUND}" --color GREEN
|
||||
else
|
||||
else
|
||||
LogText "Result: mtree is not installed"
|
||||
if IsVerbose; then Display --indent 4 --text "- mtree" --result "${STATUS_NOT_FOUND}" --color WHITE; fi
|
||||
fi
|
||||
|
@ -206,7 +206,7 @@
|
|||
Display --indent 6 --text "- LFD (CSF) daemon" --result "${STATUS_RUNNING}" --color GREEN
|
||||
FILE_INT_TOOL="csf-lfd"
|
||||
FILE_INT_TOOL_FOUND=1
|
||||
else
|
||||
else
|
||||
Display --indent 6 --text "- LFD (CSF) daemon" --result "${STATUS_NOT_RUNNING}" --color YELLOW
|
||||
fi
|
||||
fi
|
||||
|
@ -276,7 +276,7 @@
|
|||
Display --indent 6 --text "- AIDE config (Checksum)" --result Suggestion --color YELLOW
|
||||
ReportSuggestion ${TEST_NO} "Use SHA256 or SHA512 to create checksums in AIDE"
|
||||
AddHP 1 3
|
||||
else
|
||||
else
|
||||
LogText "Result: Found SHA256 or SHA512 found for creating checksums"
|
||||
Display --indent 6 --text "- AIDE config (Checksum)" --result "${STATUS_OK}" --color GREEN
|
||||
AddHP 2 2
|
||||
|
@ -294,7 +294,7 @@
|
|||
LogText "Result: found at least one file integrity tool"
|
||||
Display --indent 2 --text "- Checking presence integrity tool" --result "${STATUS_FOUND}" --color GREEN
|
||||
AddHP 5 5
|
||||
else
|
||||
else
|
||||
LogText "Result: No file integrity tools found"
|
||||
Display --indent 2 --text "- Checking presence integrity tool" --result "${STATUS_NOT_FOUND}" --color YELLOW
|
||||
ReportSuggestion ${TEST_NO} "Install a file integrity tool to monitor changes to critical and sensitive files"
|
||||
|
|
Loading…
Reference in New Issue