Conversation
- CVE-2026-69304: ASP.NET Core denial of service via improperly handled highly compressed request data, reachable unauthenticated over the network - Also picks up the Microsoft.Extensions.Configuration packages in the migration scripts, which were still pinned at 10.0.8 - Servers need the matching ASP.NET Core 10.0.12 hosting bundle; the package bump alone does not close the runtime side
Bundle ReportBundle size has no change ✅ |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #341 +/- ##
=======================================
Coverage 45.37% 45.37%
=======================================
Files 948 948
Lines 49532 49532
Branches 6700 6700
=======================================
Hits 22477 22477
Misses 26089 26089
Partials 966 966
Flags with carried forward coverage won't be shown. Click here to find out more. |
Contributor
Author
|
@bsedwards, when you can, please install the latest .NET on the TEST/PROD servers. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Picks up the September 8, 2026 .NET servicing release (10.0.12). Every
Microsoft.*/System.*package was pinned at 10.0.11, and the twomigration script projects were still on 10.0.8.
Why now
CVE-2026-69304is an ASP.NET Core denial of service via improperlyhandled highly compressed request data. It is unauthenticated and
reachable over the network, so it applies to VIPER directly.
The other CVEs in this release (
CVE-2026-69439,CVE-2026-71328, bothCVSS 8.8 out-of-bounds writes in Portable PDB / MSFZ PDB parsing, plus
CVE-2026-69522,CVE-2026-58649,CVE-2026-69806) sit in PDB-parsingpaths, so they are build and debug tooling rather than the running app.
They are fixed by the same bump.
Changes
17 package references moved to 10.0.12 across
web/Viper.csproj,test/Viper.test.csproj,EffortMigration.csproj, andPhoneListsMigration.csproj. No source changes.Deploy note
The package bump does not close the runtime side on its own. The TEST and
PROD IIS servers need the matching ASP.NET Core 10.0.12 hosting bundle
installed, otherwise
CVE-2026-69304stays open on the deployed app.Verification
npm run verify:build: passed, 0 errors, warning count unchangednpm run test: 3043 backend and 1515 frontend tests, all passing