Skip to content

Commit cb91cdb

Browse files
committed
new version 13.61
adding Office perf (CVE-2015-1641)
1 parent 4a75cf8 commit cb91cdb

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

AutoRuns.psd1

0 Bytes
Binary file not shown.

AutoRuns.psm1

+18
Original file line numberDiff line numberDiff line change
@@ -1336,6 +1336,21 @@ Begin {
13361336
}
13371337
} # hklm or hkcu
13381338
}
1339+
# Microsoft Office Memory Corruption Vulnerability (CVE-2015-1641)
1340+
'HKLM','HKCU' | ForEach-Object {
1341+
$root = $_
1342+
$key = "$($root):\SOFTWARE\Microsoft\Office test\Special\Perf"
1343+
if (Test-Path "$($root):\SOFTWARE\Microsoft\Office test\Special\Perf") {
1344+
if ((Get-ItemProperty -Path "$($root):\SOFTWARE\Microsoft\Office test\Special\Perf" -Name '(default)' -ErrorAction SilentlyContinue).'(default)') {
1345+
[pscustomobject]@{
1346+
Path = $key
1347+
Item = '(default)'
1348+
Value = (Get-ItemProperty -Path "$($root):\SOFTWARE\Microsoft\Office test\Special\Perf" -Name '(default)' -ErrorAction SilentlyContinue).'(default)'
1349+
Category = 'Office Addins';
1350+
}
1351+
}
1352+
}
1353+
}
13391354
#endregion Office Addins
13401355
}
13411356
if ($All -or $PrintMonitorDLLs) {
@@ -2236,4 +2251,7 @@ Get-PSAutorun -OfficeAddins | Format-Table -Property Path,ImagePath,Category
22362251
+HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx
22372252
+HKCU\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\RunOnceEx
22382253
+HKCU\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\Install\Software\Microsoft\Windows\CurrentVersion\RunonceEx
2254+
# From 13.51 to 13.61
2255+
+HKLM\SOFTWARE\Microsoft\Office test\Special\Perf\(Default)
2256+
+HKCU\SOFTWARE\Microsoft\Office test\Special\Perf\(Default)
22392257
#>

0 commit comments

Comments
 (0)