How to check system patch status against speculative execution side-channel vulnerabilities (Meltdown, Spectre, CVE-2017-5715, CVE-2017-5753, CVE-2017-5754)
Very short post; lots more coming soon 🙂
1 2 3 4 5 6 7 8 9 10 11 12 13 |
PS> # Save the current execution policy so you can restore it (we leave no traces, do we?) PS> $SaveExecutionPolicy = Get-ExecutionPolicy PS> Set-ExecutionPolicy RemoteSigned -Scope Currentuser PS> Import-Module SpeculationControl PS> Get-SpeculationControlSettings PS> # Restore the execution policy back to the original state PS> Set-ExecutionPolicy $SaveExecutionPolicy -Scope Currentuser |
Recent Comments