summaryrefslogtreecommitdiffstats
path: root/test/request-crlf.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-21 20:56:19 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-21 20:56:19 +0000
commit0b6210cd37b68b94252cb798598b12974a20e1c1 (patch)
treee371686554a877842d95aa94f100bee552ff2a8e /test/request-crlf.js
parentInitial commit. (diff)
downloadnode-undici-upstream.tar.xz
node-undici-upstream.zip
Adding upstream version 5.28.2+dfsg1+~cs23.11.12.3.upstream/5.28.2+dfsg1+_cs23.11.12.3upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--test/request-crlf.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/test/request-crlf.js b/test/request-crlf.js
new file mode 100644
index 0000000..abcecf0
--- /dev/null
+++ b/test/request-crlf.js
@@ -0,0 +1,32 @@
+'use strict'
+
+const { createServer } = require('http')
+const { test } = require('tap')
+const { request, errors } = require('..')
+
+test('should validate content-type CRLF Injection', (t) => {
+ t.plan(2)
+
+ const server = createServer((req, res) => {
+ t.fail('should not receive any request')
+ res.statusCode = 200
+ res.end('hello')
+ })
+
+ t.teardown(server.close.bind(server))
+
+ server.listen(0, async () => {
+ try {
+ await request(`http://localhost:${server.address().port}`, {
+ method: 'GET',
+ headers: {
+ 'content-type': 'application/json\r\n\r\nGET /foo2 HTTP/1.1'
+ }
+ })
+ t.fail('request should fail')
+ } catch (e) {
+ t.type(e, errors.InvalidArgumentError)
+ t.equal(e.message, 'invalid content-type header')
+ }
+ })
+})