Skip to content
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

Fix XSS issue #816

Merged
merged 7 commits into from
Nov 9, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion functions/helloworld/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
'use strict';

const Buffer = require('safe-buffer').Buffer;
const escapeHtml = require('escape-html');

// [START functions_helloworld_get]
/**
Expand Down Expand Up @@ -44,7 +45,7 @@ exports.helloGET = (req, res) => {
*/
// [START functions_tips_terminate]
exports.helloHttp = (req, res) => {
res.send(`Hello ${req.body.name || 'World'}!`);
res.send(`Hello ${escapeHtml(req.body.name || 'World')}!`);
};
// [END functions_helloworld_http]

Expand Down
1 change: 1 addition & 0 deletions functions/helloworld/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
},
"dependencies": {
"@google-cloud/debug-agent": "2.4.0",
"escape-html": "^1.0.3",
"pug": "2.0.3",
"safe-buffer": "5.1.1"
},
Expand Down
11 changes: 11 additions & 0 deletions functions/helloworld/test/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,17 @@ test.cb(`helloHttp: should print hello world`, (t) => {
.end(t.end);
});

test.cb.serial(`helloHttp: should escape XSS`, (t) => {
supertest(BASE_URL)
.post(`/helloHttp`)
.send({ name: '<script>alert(1)</script>' })
.expect(200)
.expect((response) => {
t.false(response.text.includes('<script>'));
})
.end(t.end);
});

test(`helloBackground: should print a name`, async (t) => {
const data = JSON.stringify({name: 'John'});
const output = await tools.runAsync(`${baseCmd} call helloBackground --data '${data}'`);
Expand Down
4 changes: 3 additions & 1 deletion functions/http/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
'use strict';

// [START functions_http_content]
const escapeHtml = require('escape-html');

/**
* Responds to an HTTP request using data from the request body parsed according
* to the "content-type" header.
Expand Down Expand Up @@ -48,7 +50,7 @@ exports.helloContent = (req, res) => {
break;
}

res.status(200).send(`Hello ${name || 'World'}!`);
res.status(200).send(`Hello ${escapeHtml(name || 'World')}!`);
};
// [END functions_http_content]

Expand Down
1 change: 1 addition & 0 deletions functions/http/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"dependencies": {
"@google-cloud/storage": "1.7.0",
"busboy": "^0.2.14",
"escape-html": "^1.0.3",
"safe-buffer": "5.1.1"
},
"cloud-repo-tools": {
Expand Down
13 changes: 13 additions & 0 deletions functions/http/test/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,19 @@ test.serial(`http:helloContent: should handle other`, (t) => {
t.deepEqual(mocks.res.send.firstCall.args[0], `Hello World!`);
});

test.serial(`http:helloContent: should escape XSS`, (t) => {
const mocks = getMocks();
const httpSample = getSample();
mocks.req.headers[`content-type`] = `text/plain`;
mocks.req.body = { name: `<script>alert(1)</script>` };
httpSample.sample.helloContent(mocks.req, mocks.res);

t.true(mocks.res.status.calledOnce);
t.is(mocks.res.status.firstCall.args[0], 200);
t.true(mocks.res.send.calledOnce);
t.false(mocks.res.send.firstCall.args[0].includes('<script>'));
});

test.serial(`http:cors: should respond to preflight request (no auth)`, (t) => {
const mocks = getMocks();
const httpSample = getSample();
Expand Down