-
Notifications
You must be signed in to change notification settings - Fork 17
feat: add DNS rebinding protection conformance tests #115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+340
−4
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
1a3d913
feat: add DNS rebinding protection conformance tests
pcarleton 30cda52
feat: add negative test case for DNS rebinding protection
pcarleton b1e3a47
fix: accept any 4xx status code for DNS rebinding rejection
pcarleton b1cf903
refactor: address PR review comments
pcarleton f3210a1
fix: include error details in catch block
pcarleton 2420796
refactor: simplify negative test server to stateless
pcarleton 7c1b3db
refactor: check both Host and Origin headers for DNS rebinding protec…
pcarleton File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
64 changes: 64 additions & 0 deletions
64
examples/servers/typescript/no-dns-rebinding-protection.ts
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,64 @@ | ||
| #!/usr/bin/env node | ||
|
|
||
| /** | ||
| * MCP Server WITHOUT DNS Rebinding Protection - Negative Test Case | ||
| * | ||
| * This is the simplest possible vulnerable server to demonstrate what happens | ||
| * when DNS rebinding protection is omitted. DO NOT use this pattern in production. | ||
| * | ||
| * This server should FAIL the dns-rebinding-protection conformance scenario. | ||
| */ | ||
|
|
||
| import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; | ||
| import { StreamableHTTPServerTransport } from '@modelcontextprotocol/sdk/server/streamableHttp.js'; | ||
| import express from 'express'; | ||
|
|
||
| // Create minimal MCP server | ||
| const server = new McpServer({ | ||
| name: 'no-dns-rebinding-protection-server', | ||
| version: '1.0.0' | ||
| }); | ||
|
|
||
| // Add a simple tool | ||
| server.tool( | ||
| 'echo', | ||
| 'Echo the input back', | ||
| { message: { type: 'string' } }, | ||
| async ({ message }) => ({ | ||
| content: [{ type: 'text', text: `Echo: ${message}` }] | ||
| }) | ||
| ); | ||
|
|
||
| // === VULNERABLE EXPRESS APP === | ||
| // This intentionally does NOT use createMcpExpressApp() or localhostHostValidation() | ||
| const app = express(); | ||
| app.use(express.json()); | ||
| // NO DNS rebinding protection middleware here! | ||
|
|
||
| app.post('/mcp', async (req, res) => { | ||
| try { | ||
| // Stateless: no session ID | ||
| const transport = new StreamableHTTPServerTransport({ | ||
| sessionIdGenerator: undefined | ||
| }); | ||
| await server.connect(transport); | ||
| await transport.handleRequest(req, res, req.body); | ||
| } catch (error) { | ||
| if (!res.headersSent) { | ||
| res.status(500).json({ | ||
| jsonrpc: '2.0', | ||
| error: { | ||
| code: -32603, | ||
| message: `Internal error: ${error instanceof Error ? error.message : String(error)}` | ||
| }, | ||
| id: null | ||
| }); | ||
| } | ||
| } | ||
| }); | ||
|
|
||
| const PORT = parseInt(process.env.PORT || '3003', 10); | ||
| app.listen(PORT, '127.0.0.1', () => { | ||
| console.log(`Vulnerable server running on http://localhost:${PORT}/mcp`); | ||
| console.log(`WARNING: No DNS rebinding protection enabled!`); | ||
| }); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
note: this example is going to get deleted in a follow-up PR to make the typescript-sdk example the source of truth. updating it in place for now.