diff options
author | Stéphane Lesimple <speed47_github@speed47.net> | 2018-01-08 12:22:56 +0100 |
---|---|---|
committer | Stéphane Lesimple <speed47_github@speed47.net> | 2018-01-08 12:22:56 +0100 |
commit | ef7a5c4cf64c7d7af6836b40dc1ea1dd3e1265ab (patch) | |
tree | 0f8b47dc62ed68892073edf383f36d0643c0ddc6 | |
parent | 4406910beaac659ea3eb4b8c51d3e30a5916a113 (diff) | |
download | spectre-meltdown-checker-ef7a5c4cf64c7d7af6836b40dc1ea1dd3e1265ab.tar.lz spectre-meltdown-checker-ef7a5c4cf64c7d7af6836b40dc1ea1dd3e1265ab.tar.xz spectre-meltdown-checker-ef7a5c4cf64c7d7af6836b40dc1ea1dd3e1265ab.zip |
adding uname -v to get potential additional vendor information
-rwxr-xr-x | spectre-meltdown-checker.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spectre-meltdown-checker.sh b/spectre-meltdown-checker.sh index a6ba313..38d11ee 100755 --- a/spectre-meltdown-checker.sh +++ b/spectre-meltdown-checker.sh @@ -90,7 +90,7 @@ if [ "$(id -u)" -ne 0 ]; then /bin/echo fi -/bin/echo -e "Checking vulnerabilities against \033[35m"$(uname -s) $(uname -r) $(uname -m)"\033[0m" +/bin/echo -e "Checking vulnerabilities against \033[35m"$(uname -s) $(uname -r) $(uname -v) $(uname -m)"\033[0m" /bin/echo ########### |