-
Notifications
You must be signed in to change notification settings - Fork 8.5k
Separate xsrf handling and version checking #8151
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
Merged
Changes from all commits
Commits
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,76 @@ | ||
| import expect from 'expect.js'; | ||
| import { fromNode } from 'bluebird'; | ||
| import { resolve } from 'path'; | ||
| import * as kbnTestServer from '../../../../test/utils/kbn_server'; | ||
|
|
||
| const src = resolve.bind(null, __dirname, '../../../../src'); | ||
|
|
||
| const versionHeader = 'kbn-version'; | ||
| const version = require(src('../package.json')).version; | ||
|
|
||
| describe('version_check request filter', function () { | ||
| function makeRequest(kbnServer, opts) { | ||
| return fromNode(cb => { | ||
| kbnTestServer.makeRequest(kbnServer, opts, (resp) => { | ||
| cb(null, resp); | ||
| }); | ||
| }); | ||
| } | ||
|
|
||
| async function makeServer() { | ||
| const kbnServer = kbnTestServer.createServer(); | ||
|
|
||
| await kbnServer.ready(); | ||
|
|
||
| kbnServer.server.route({ | ||
| path: '/version_check/test/route', | ||
| method: 'GET', | ||
| handler: function (req, reply) { | ||
| reply(null, 'ok'); | ||
| } | ||
| }); | ||
|
|
||
| return kbnServer; | ||
| }; | ||
|
|
||
| let kbnServer; | ||
| beforeEach(async () => kbnServer = await makeServer()); | ||
| afterEach(async () => await kbnServer.close()); | ||
|
|
||
| it('accepts requests with the correct version passed in the version header', async function () { | ||
| const resp = await makeRequest(kbnServer, { | ||
| url: '/version_check/test/route', | ||
| method: 'GET', | ||
| headers: { | ||
| [versionHeader]: version, | ||
| }, | ||
| }); | ||
|
|
||
| expect(resp.statusCode).to.be(200); | ||
| expect(resp.payload).to.be('ok'); | ||
| }); | ||
|
|
||
| it('rejects requests with an incorrect version passed in the version header', async function () { | ||
| const resp = await makeRequest(kbnServer, { | ||
| url: '/version_check/test/route', | ||
| method: 'GET', | ||
| headers: { | ||
| [versionHeader]: `invalid:${version}`, | ||
| }, | ||
| }); | ||
|
|
||
| expect(resp.statusCode).to.be(400); | ||
| expect(resp.headers).to.have.property(versionHeader, version); | ||
| expect(resp.payload).to.match(/"Browser client is out of date/); | ||
| }); | ||
|
|
||
| it('accepts requests that do not include a version header', async function () { | ||
| const resp = await makeRequest(kbnServer, { | ||
| url: '/version_check/test/route', | ||
| method: 'GET' | ||
| }); | ||
|
|
||
| expect(resp.statusCode).to.be(200); | ||
| expect(resp.payload).to.be('ok'); | ||
| }); | ||
| }); |
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
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,19 @@ | ||
| import { badRequest } from 'boom'; | ||
|
|
||
| export default function (kbnServer, server, config) { | ||
| const versionHeader = 'kbn-version'; | ||
| const actualVersion = config.get('pkg.version'); | ||
|
|
||
| server.ext('onPostAuth', function (req, reply) { | ||
| const versionRequested = req.headers[versionHeader]; | ||
|
|
||
| if (versionRequested && versionRequested !== actualVersion) { | ||
| return reply(badRequest('Browser client is out of date, please refresh the page', { | ||
| expected: actualVersion, | ||
| got: versionRequested | ||
| })); | ||
| } | ||
|
|
||
| return reply.continue(); | ||
| }); | ||
| } |
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
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.
This fails if only the version header exists, doesn't it? Maybe that's intentional (though I think it shouldn't be), in which case the message is wrong.
if (!isSafeMethod && (!hasVersionHeader || !hasXsrfHeader)) {would be safer, with a message saying that both are required.Even better, can't we just remove the version check in 5.0? Major bump, breaking change...
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.
Going along with w33bles comment and nitpicking, I think this reads a little easier in the positive
isSafeMethod || hasVersionHeader || hasXsrfHeader. Not a huge problem, don't think it should block.