mirror of
https://github.com/speed47/spectre-meltdown-checker.git
synced 2025-07-15 15:21:23 +02:00
Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
bd4c74331e | |||
82972f8790 |
@ -1,7 +1,7 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# Spectre & Meltdown checker
|
# Spectre & Meltdown checker
|
||||||
# Stephane Lesimple
|
# Stephane Lesimple
|
||||||
VERSION=0.03
|
VERSION=0.04
|
||||||
|
|
||||||
pstatus()
|
pstatus()
|
||||||
{
|
{
|
||||||
@ -73,6 +73,7 @@ extract_vmlinux()
|
|||||||
/bin/echo -e "\033[1;34mCVE-2017-5753 [bounds check bypass] aka 'Spectre Variant 1'\033[0m"
|
/bin/echo -e "\033[1;34mCVE-2017-5753 [bounds check bypass] aka 'Spectre Variant 1'\033[0m"
|
||||||
/bin/echo -n "* Kernel compiled with LFENCE opcode inserted at the proper places: "
|
/bin/echo -n "* Kernel compiled with LFENCE opcode inserted at the proper places: "
|
||||||
|
|
||||||
|
status=0
|
||||||
img=''
|
img=''
|
||||||
[ -e /boot/vmlinuz-$(uname -r) ] && img=/boot/vmlinuz-$(uname -r)
|
[ -e /boot/vmlinuz-$(uname -r) ] && img=/boot/vmlinuz-$(uname -r)
|
||||||
[ -e /boot/vmlinux-$(uname -r) ] && img=/boot/vmlinux-$(uname -r)
|
[ -e /boot/vmlinux-$(uname -r) ] && img=/boot/vmlinux-$(uname -r)
|
||||||
@ -163,15 +164,32 @@ fi
|
|||||||
|
|
||||||
/bin/echo "* Mitigation 2"
|
/bin/echo "* Mitigation 2"
|
||||||
/bin/echo -n "* Kernel recompiled with retpolines: "
|
/bin/echo -n "* Kernel recompiled with retpolines: "
|
||||||
pstatus yellow UNKNOWN "check not yet implemented"
|
# XXX this doesn't mean the kernel has been compiled with a retpoline-aware gcc
|
||||||
|
if [ -e /proc/config.gz ]; then
|
||||||
|
if zgrep -q '^CONFIG_RETPOLINE=y' /proc/config.gz; then
|
||||||
|
pstatus green YES
|
||||||
|
retpoline=1
|
||||||
|
else
|
||||||
|
pstatus red NO
|
||||||
|
fi
|
||||||
|
elif [ -e /boot/config-$(uname -r) ]; then
|
||||||
|
if grep -q '^CONFIG_RETPOLINE=y' /boot/config-$(uname -r); then
|
||||||
|
pstatus green YES
|
||||||
|
retpoline=1
|
||||||
|
else
|
||||||
|
pstatus red NO
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
/bin/echo -ne "> \033[46m\033[30mSTATUS:\033[0m "
|
/bin/echo -ne "> \033[46m\033[30mSTATUS:\033[0m "
|
||||||
if grep -q AMD /proc/cpuinfo; then
|
if grep -q AMD /proc/cpuinfo; then
|
||||||
pstatus green "NOT VULNERABLE" "your CPU is not vulnerable as per the vendor"
|
pstatus green "NOT VULNERABLE" "your CPU is not vulnerable as per the vendor"
|
||||||
elif [ "$ibrs_enabled" = 1 -o "$ibrs_enabled" = 2 ]; then
|
elif [ "$ibrs_enabled" = 1 -o "$ibrs_enabled" = 2 ]; then
|
||||||
pstatus green "NOT VULNERABLE" "IBRS mitigates the vulnerability"
|
pstatus green "NOT VULNERABLE" "IBRS mitigates the vulnerability"
|
||||||
|
elif [ "$retpoline" = 1 ]; then
|
||||||
|
pstatus green "NOT VULNERABLE" "retpolines mitigate the vulnerability"
|
||||||
else
|
else
|
||||||
pstatus red VULNERABLE "IBRS hardware + kernel support OR retpolines-compiled kernel are needed to mitigate the vulnerability"
|
pstatus red VULNERABLE "IBRS hardware + kernel support OR kernel with retpolines kernel are needed to mitigate the vulnerability"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# MELTDOWN
|
# MELTDOWN
|
||||||
|
Reference in New Issue
Block a user