summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-client-unescaped-path.js
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2016-10-04 11:44:54 +0200
committerBen Noordhuis <info@bnoordhuis.nl>2016-10-13 13:32:45 +0200
commit4f62acd9c5e6f7d65605dda0ebdcf60e9e848311 (patch)
treef94de10bef7443077d66192bae8be8265fe646b0 /test/parallel/test-http-client-unescaped-path.js
parentb899140291f6bd6aabc04cb8e1b114b8ee85a5fe (diff)
downloadandroid-node-v8-4f62acd9c5e6f7d65605dda0ebdcf60e9e848311.tar.gz
android-node-v8-4f62acd9c5e6f7d65605dda0ebdcf60e9e848311.tar.bz2
android-node-v8-4f62acd9c5e6f7d65605dda0ebdcf60e9e848311.zip
http: reject control characters in http.request()
Unsanitized paths containing line feed characters can be used for header injection and request splitting so reject them with an exception. There seems to be no reasonable use case for allowing control characters (characters <= 31) while there are several scenarios where they can be used to exploit software bugs so reject control characters altogether. PR-URL: https://github.com/nodejs/node/pull/8923 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: Fedor Indutny <fedor@indutny.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: not-an-aardvark <not-an-aardvark@users.noreply.github.com>
Diffstat (limited to 'test/parallel/test-http-client-unescaped-path.js')
-rw-r--r--test/parallel/test-http-client-unescaped-path.js19
1 files changed, 12 insertions, 7 deletions
diff --git a/test/parallel/test-http-client-unescaped-path.js b/test/parallel/test-http-client-unescaped-path.js
index e01df255a8..2411d0e6be 100644
--- a/test/parallel/test-http-client-unescaped-path.js
+++ b/test/parallel/test-http-client-unescaped-path.js
@@ -1,9 +1,14 @@
'use strict';
-var common = require('../common');
-var assert = require('assert');
-var http = require('http');
+const common = require('../common');
+const assert = require('assert');
+const http = require('http');
-assert.throws(function() {
- // Path with spaces in it should throw.
- http.get({ path: 'bad path' }, common.fail);
-}, /contains unescaped characters/);
+function* bad() {
+ for (let i = 0; i <= 32; i += 1)
+ yield 'bad' + String.fromCharCode(i) + 'path';
+}
+
+for (const path of bad()) {
+ assert.throws(() => http.get({ path }, common.fail),
+ /contains unescaped characters/);
+}