Vulnerability: Missing Session Ownership Validation in the Ruby MCP SDK's Streamable and SSE HTTP transport implementation. Any attacker with a stolen session ID can execute tools with the victim's session. This is a silent attack - the victim's session is compromised and being used for unauthorized actions, but it is hard to know for the victim
https://github.com/modelcontextprotocol/ruby-sdk/blob/main/lib/mcp/server/transports/streamablehttptransport.rb#L260-L278
Victim starts a legitimate MCP session and receives session ID abc-123 Attacker obtains the session ID (various means - network sniffing, logs, etc. out of scope for this analysis) Attacker sends POST to /messages/abc-123 with a tool call Server accepts the request (no ownership validation!) Server executes the tool and sends response to victim's SSE stream Victim receives attacker's response, thinking it's legitimate
attacker_client.py legitimate_client.py
Prerequisites
requestsRunning the Demo
ruby streamable_http_server.rb
Makes use of https://github.com/modelcontextprotocol/ruby-sdk/blob/main/examples/streamablehttpserver.rb This server has a tool call notification_tool which the clients call
python3 legitimate_client.py
Copy the session ID from Terminal 1 and run:
python3 attacker_client.py abc-123-def-456
4. Back to Terminal 2 - Victim sees the injected response:
Session Hijacking Protection in MCP Implementations
The MCP specification recommends - "MCP servers SHOULD bind session IDs to user-specific information".
csharp-sdk
Go-sdk
Stream Replacement https://github.com/modelcontextprotocol/ruby-sdk/security/advisories/GHSA-qvqr-5cv7-wh35
Session Poisoning
{
"nvd_published_at": "2026-07-29T20:17:12Z",
"severity": "HIGH",
"github_reviewed": true,
"github_reviewed_at": "2026-07-30T14:44:28Z",
"cwe_ids": [
"CWE-284"
]
}