Skip to content

Commit 210c97f

Browse files
committed
Update packages to fix known vulnerabilities
1 parent 033aa2d commit 210c97f

2 files changed

Lines changed: 30 additions & 4 deletions

File tree

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
[
2+
{
3+
"ChangeType": "Security",
4+
"Branch": "release/v7.6.1",
5+
"PackageId": "System.Security.Cryptography.Xml",
6+
"FromVersion": "10.0.5",
7+
"ToVersion": "10.0.6",
8+
"VulnerabilityId": [
9+
"GHSA-37GX-XXP4-5RGX",
10+
"CVE-2026-33116",
11+
"GHSA-W3X6-4M5H-CXQF",
12+
"CVE-2026-26171"
13+
],
14+
"Severity": [
15+
"high"
16+
],
17+
"VulnerableRanges": [
18+
"[10.0.0, 10.0.5]"
19+
],
20+
"AdvisoryUrls": [
21+
"https://github.com/advisories/GHSA-37gx-xxp4-5rgx",
22+
"https://github.com/advisories/GHSA-w3x6-4m5h-cxqf"
23+
],
24+
"Justification": null,
25+
"TimestampUtc": "2026-04-15T22:17:31.3488963Z"
26+
}
27+
]

src/Microsoft.PowerShell.SDK/Microsoft.PowerShell.SDK.csproj

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
<PackageReference Include="System.Runtime.Caching" Version="10.0.5" />
6161
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="10.0.5" />
6262
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="10.0.5" />
63-
<PackageReference Include="System.Security.Cryptography.Xml" Version="10.0.5" />
63+
<PackageReference Include="System.Security.Cryptography.Xml" Version="10.0.6" />
6464
<PackageReference Include="System.Security.Permissions" Version="10.0.5" />
6565
<!-- the following package(s) are from https://github.com/dotnet/wcf -->
6666
<PackageReference Include="System.ServiceModel.Http" Version="10.0.652802" />
@@ -85,14 +85,13 @@
8585
dotnet msbuild ./dummy.csproj /t:ResolveAssemblyReferencesDesignTime /fileLogger /noconsolelogger /v:diag
8686
3. Search '_ReferencesFromRAR' in the produced 'msbuild.log' file.
8787
-->
88-
<Target Name="_GetDependencies"
89-
DependsOnTargets="ResolveAssemblyReferencesDesignTime">
88+
<Target Name="_GetDependencies" DependsOnTargets="ResolveAssemblyReferencesDesignTime">
9089
<ItemGroup>
9190
<!--
9291
Excludes 'Microsoft.Management.Infrastructure' from the type catalog reference list,
9392
as it is provided separately at runtime and must not be included in the generated catalog.
9493
-->
95-
<_RefAssemblyPath Include="%(_ReferencesFromRAR.OriginalItemSpec)%3B" Condition=" '%(_ReferencesFromRAR.NuGetPackageId)' != 'Microsoft.Management.Infrastructure' "/>
94+
<_RefAssemblyPath Include="%(_ReferencesFromRAR.OriginalItemSpec)%3B" Condition=" '%(_ReferencesFromRAR.NuGetPackageId)' != 'Microsoft.Management.Infrastructure' " />
9695
</ItemGroup>
9796
<WriteLinesToFile File="$(_DependencyFile)" Lines="@(_RefAssemblyPath)" Overwrite="true" />
9897
</Target>

0 commit comments

Comments
 (0)