mirror of https://github.com/CISOfy/lynis.git
[KRNL-5788] Improvements for grsecurity kernels
This commit is contained in:
parent
0f64d106b1
commit
3e20c1e30b
|
@ -349,8 +349,7 @@
|
||||||
LogText "Test: checking package from dpkg -S"
|
LogText "Test: checking package from dpkg -S"
|
||||||
FINDKERNEL=`dpkg -S ${FINDKERNFILE} 2> /dev/null | awk -F : '{print $1}'`
|
FINDKERNEL=`dpkg -S ${FINDKERNFILE} 2> /dev/null | awk -F : '{print $1}'`
|
||||||
LogText "Output: dpkg -S reported package ${FINDKERNEL}"
|
LogText "Output: dpkg -S reported package ${FINDKERNEL}"
|
||||||
else
|
elif [ -e /dev/grsec ]; then
|
||||||
if [ -e /dev/grsec ]; then
|
|
||||||
FINDKERNEL=linux-image-`uname -r`
|
FINDKERNEL=linux-image-`uname -r`
|
||||||
LogText "/vmlinuz missing due to grsecurity; assuming ${FINDKERNEL}"
|
LogText "/vmlinuz missing due to grsecurity; assuming ${FINDKERNEL}"
|
||||||
else
|
else
|
||||||
|
@ -358,7 +357,6 @@
|
||||||
ReportException "${TEST_NO}:00|Missing /vmlinuz"
|
ReportException "${TEST_NO}:00|Missing /vmlinuz"
|
||||||
ReportSuggestion ${TEST_NO} "Discover why /vmlinuz is missing. Consider manually re-linking."
|
ReportSuggestion ${TEST_NO} "Discover why /vmlinuz is missing. Consider manually re-linking."
|
||||||
fi
|
fi
|
||||||
fi
|
|
||||||
LogText "Test: Using apt-cache policy to determine if there is an update available"
|
LogText "Test: Using apt-cache policy to determine if there is an update available"
|
||||||
FINDINST=`apt-cache policy ${FINDKERNEL} | egrep 'Installed' | cut -d ':' -f2 | tr -d ' '`
|
FINDINST=`apt-cache policy ${FINDKERNEL} | egrep 'Installed' | cut -d ':' -f2 | tr -d ' '`
|
||||||
FINDCAND=`apt-cache policy ${FINDKERNEL} | egrep 'Candidate' | cut -d ':' -f2 | tr -d ' '`
|
FINDCAND=`apt-cache policy ${FINDKERNEL} | egrep 'Candidate' | cut -d ':' -f2 | tr -d ' '`
|
||||||
|
@ -375,7 +373,7 @@
|
||||||
if [ -e /dev/grsec ]; then
|
if [ -e /dev/grsec ]; then
|
||||||
Display --indent 2 --text "- Checking for available kernel update" --result GRSEC --color GREEN
|
Display --indent 2 --text "- Checking for available kernel update" --result GRSEC --color GREEN
|
||||||
LogText "Result: Grsecurity is installed; unable to determine if there's a newer kernel available"
|
LogText "Result: Grsecurity is installed; unable to determine if there's a newer kernel available"
|
||||||
ReportSuggestion ${TEST_NO} "Manually check to confirm you're using a recent kernel and grsecurity patch"
|
ReportManual "Manually check to confirm you're using a recent kernel and grsecurity patch"
|
||||||
else
|
else
|
||||||
Display --indent 2 --text "- Checking for available kernel update" --result OK --color GREEN
|
Display --indent 2 --text "- Checking for available kernel update" --result OK --color GREEN
|
||||||
LogText "Result: no kernel update available"
|
LogText "Result: no kernel update available"
|
||||||
|
|
Loading…
Reference in New Issue