mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
2e6de554f6
PR-URL: https://github.com/nodejs-private/node-private/pull/427 Fixes: https://hackerone.com/reports/2001873 Refs: https://github.com/nodejs-private/llhttp-private/pull/13 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> CVE-ID: CVE-2023-30589
84 lines
1.6 KiB
JavaScript
84 lines
1.6 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
const http = require('http');
|
|
const net = require('net');
|
|
|
|
function serverHandler(server, msg) {
|
|
const client = net.connect(server.address().port, 'localhost');
|
|
|
|
let response = '';
|
|
|
|
client.on('data', common.mustCall((chunk) => {
|
|
response += chunk;
|
|
}));
|
|
|
|
client.setEncoding('utf8');
|
|
client.on('error', common.mustNotCall());
|
|
client.on('end', common.mustCall(() => {
|
|
assert.strictEqual(
|
|
response,
|
|
'HTTP/1.1 400 Bad Request\r\nConnection: close\r\n\r\n'
|
|
);
|
|
server.close();
|
|
}));
|
|
client.write(msg);
|
|
client.resume();
|
|
}
|
|
|
|
{
|
|
const msg = [
|
|
'GET / HTTP/1.1',
|
|
'Host: localhost',
|
|
'Dummy: x\rContent-Length: 23',
|
|
'',
|
|
'GET / HTTP/1.1',
|
|
'Dummy: GET /admin HTTP/1.1',
|
|
'Host: localhost',
|
|
'',
|
|
'',
|
|
].join('\r\n');
|
|
|
|
const server = http.createServer(common.mustNotCall());
|
|
|
|
server.listen(0, common.mustSucceed(serverHandler.bind(null, server, msg)));
|
|
}
|
|
|
|
{
|
|
const msg = [
|
|
'POST / HTTP/1.1',
|
|
'Host: localhost',
|
|
'x:x\rTransfer-Encoding: chunked',
|
|
'',
|
|
'1',
|
|
'A',
|
|
'0',
|
|
'',
|
|
'',
|
|
].join('\r\n');
|
|
|
|
const server = http.createServer(common.mustNotCall());
|
|
|
|
server.listen(0, common.mustSucceed(serverHandler.bind(null, server, msg)));
|
|
}
|
|
|
|
{
|
|
const msg = [
|
|
'POST / HTTP/1.1',
|
|
'Host: localhost',
|
|
'x:\rTransfer-Encoding: chunked',
|
|
'',
|
|
'1',
|
|
'A',
|
|
'0',
|
|
'',
|
|
'',
|
|
].join('\r\n');
|
|
|
|
const server = http.createServer(common.mustNotCall());
|
|
|
|
server.listen(0, common.mustSucceed(serverHandler.bind(null, server, msg)));
|
|
}
|