With so much going on - is there a way in linux to know whether my system is patched or not? Similar to the powershell script for Windows?
[ 0.000000] Kernel/User page tables isolation: enabled
21–30 of 186 posts
With so much going on - is there a way in linux to know whether my system is patched or not? Similar to the powershell script for Windows?
[ 0.000000] Kernel/User page tables isolation: enabled
Earlier quoted context omitted.
So, there is NO kernel update available for Ubuntu 16.04 at this time.
Right - for desktop use though, there are Firefox and Chrome updates with mitigation. JavaScript exploits were the most dangerous desktop scenario. For servers running Ubuntu, what is the risk, as long as my services don't run arbitrary user uploaded executables? As far as I can tell it is that a different remote code execution exploit can now read the entire memory, possibly leaking secrets. Assuming we have a kerne…
This won't stop the memory from being accessed, but it has a better chance of stopping things that can exploit the bug(s) in the first place.
Revoking TLS certs is probably a little bit on the side of paranoia.
I think you're on the right track -- just watch for the kernel update, and rotate passwords plus keys if it's not a hassle.
Earlier quoted context omitted.
And you probably know much better than the second most important guy on linux what security means on the Internet: securing some javascript script on a random blog.
HTTPS should be expected by now - ISPs keep messing with my unencrypted traffic.
With so much going on - is there a way in linux to know whether my system is patched or not? Similar to the powershell script for Windows?
1. With dmesg
dmesg -wH | grep 'page tables isolation'
2. With /proc/cpuinfo
grep cpu_insecure /proc/cpuinfo && echo "Patched" || echo "Unpatched!"
[1] https://askubuntu.com/questions/992137/how-to-check-that-kpt...
With so much going on - is there a way in linux to know whether my system is patched or not? Similar to the powershell script for Windows?
https://blogs.technet.microsoft.com/ralphkyttle/2018/01/05/v...
The website serves JS and does not serve it over https, and discusses Spectre bug and how to patch it. I know he is the second most important guy on linux, but the irony.
Earlier quoted context omitted.
HTTPS should be expected by now - ISPs keep messing with my unencrypted traffic.
Then you should get yourself a different ISP or a VPN.
Earlier quoted context omitted.
What is the expected outcome if its patched vs. not? I am getting: fpu_exception : yes
You should see "pti" on the "flags" line of /proc/cpuinfo. You apparently don't, so you don't have page table isolation.
Edit: facepalm. Or should that be foot-in-mouth?