feat(C10): add MCP protocol version downgrade prevention control (10.3.6)#631
Open
RicoKomenda wants to merge 1 commit intoOWASP:mainfrom
Open
feat(C10): add MCP protocol version downgrade prevention control (10.3.6)#631RicoKomenda wants to merge 1 commit intoOWASP:mainfrom
RicoKomenda wants to merge 1 commit intoOWASP:mainfrom
Conversation
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.
Summary
Adds 10.3.6 to C10.3 (Secure Transport & Network Boundary Protection) to close the client-side gap left by 10.3.5, which only protects the version header from intermediary stripping.
New control:
Level: 2
Why this is needed
The MCP specification uses an
initializehandshake where the client proposes a version and the server responds with the version it will use. A malicious server or MITM intermediary could respond with an older version that lacks security features introduced in later revisions (e.g., improved message signing requirements, stricter origin validation). Without a client-enforced minimum version, the client silently downgrades.10.3.5 already requires intermediaries not to strip the
Mcp-Protocol-Versionheader. That protects against passive header stripping on streamable-HTTP. 10.3.6 adds the complementary client-side control: the client must actively enforce a minimum floor and abort the handshake if the server negotiates below it. Together these controls close both the passive (stripping) and active (malicious server response) downgrade paths.This is directly analogous to TLS minimum version enforcement (which is standard practice and covered by 10.3.2) applied to the MCP application-layer protocol version.
Changes
1.0/en/0x10-C10-MCP-Security.md: add 10.3.61.0/en/0x93-Appendix-D_AI_Security_Controls_Inventory.md: add entry to AD.4