issue with 'CVE-2017-5753 mitigated in IE' and PSv2 fixed
This commit is contained in:
parent
e6f64dfaf5
commit
6ad1719507
|
@ -53,7 +53,7 @@
|
||||||
Export-Csv -Path $env:USERPROFILE\Desktop\servers.txt -NoTypeInformation
|
Export-Csv -Path $env:USERPROFILE\Desktop\servers.txt -NoTypeInformation
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: VRDSE
|
Author: VRDSE
|
||||||
Version: 0.4.1
|
Version: 0.4.2
|
||||||
#>
|
#>
|
||||||
[CmdletBinding()]
|
[CmdletBinding()]
|
||||||
param(
|
param(
|
||||||
|
@ -1104,14 +1104,16 @@ $GetMeltdownStatusInformation = {
|
||||||
if ($SystemInformation.isEdge) {
|
if ($SystemInformation.isEdge) {
|
||||||
#KBs from https://portal.msrc.microsoft.com/en-US/security-guidance/advisory/ADV180002
|
#KBs from https://portal.msrc.microsoft.com/en-US/security-guidance/advisory/ADV180002
|
||||||
$EdgeUpdates = 'KB4056893', 'KB4056890', 'KB4056891', 'KB4056892', 'KB4056888'
|
$EdgeUpdates = 'KB4056893', 'KB4056890', 'KB4056891', 'KB4056892', 'KB4056888'
|
||||||
$EdgeMitigated = IsHotfixInstalled $EdgeUpdates $SystemInformation.InstalledUpdates.HotFixId
|
$Installed = $SystemInformation.InstalledUpdates | Select-Object -ExpandProperty HotFixId
|
||||||
|
$EdgeMitigated = IsHotfixInstalled $EdgeUpdates $Installed
|
||||||
}
|
}
|
||||||
|
|
||||||
# Internet Explorer
|
# Internet Explorer
|
||||||
if ($SystemInformation.isIE) {
|
if ($SystemInformation.isIE) {
|
||||||
# KBs from https://portal.msrc.microsoft.com/en-US/security-guidance/advisory/ADV180002
|
# KBs from https://portal.msrc.microsoft.com/en-US/security-guidance/advisory/ADV180002
|
||||||
$IEUpdates = 'KB4056890', 'KB4056895', 'KB4056894', 'KB4056568', 'KB4056893', 'KB4056891', 'KB4056892'
|
$IEUpdates = 'KB4056890', 'KB4056895', 'KB4056894', 'KB4056568', 'KB4056893', 'KB4056891', 'KB4056892'
|
||||||
$IEMitigated = IsHotfixInstalled $IEUpdates $SystemInformation.InstalledUpdates.HotFixId
|
$Installed = $SystemInformation.InstalledUpdates | Select-Object -ExpandProperty HotFixId
|
||||||
|
$IEMitigated = IsHotfixInstalled $IEUpdates $Installed
|
||||||
}
|
}
|
||||||
|
|
||||||
# Firefox
|
# Firefox
|
||||||
|
|
|
@ -201,6 +201,8 @@ else {
|
||||||
This can be considered as the Hyper-V Guest equivalent to "microcode CPU update from hardware OEM".
|
This can be considered as the Hyper-V Guest equivalent to "microcode CPU update from hardware OEM".
|
||||||
|
|
||||||
# History
|
# History
|
||||||
|
### 0.4.2
|
||||||
|
* \* issue with 'CVE-2017-5753 mitigated in IE' and PSv2 fixed
|
||||||
### 0.4.1
|
### 0.4.1
|
||||||
* \* fixing "Firefox.exe located in Program Files (x86) #1"
|
* \* fixing "Firefox.exe located in Program Files (x86) #1"
|
||||||
### 0.4
|
### 0.4
|
||||||
|
|
Loading…
Reference in New Issue