-
Notifications
You must be signed in to change notification settings - Fork 30.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
http: add regression test for smuggling content length
PR-URL: nodejs-private/node-private#286 Reviewed-By: Beth Griggs <[email protected]>
- Loading branch information
1 parent
0858587
commit d5d3a03
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
test/parallel/test-http-request-smuggling-content-length.js
This file contains 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,31 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const http = require('http'); | ||
const net = require('net'); | ||
const assert = require('assert'); | ||
|
||
// Verify that a request with a space before the content length will result | ||
// in a 400 Bad Request. | ||
|
||
const server = http.createServer(common.mustNotCall()); | ||
|
||
server.listen(0, common.mustCall(start)); | ||
|
||
function start() { | ||
const sock = net.connect(server.address().port); | ||
|
||
sock.write('GET / HTTP/1.1\r\nHost: localhost:5000\r\n' + | ||
'Content-Length : 5\r\n\r\nhello'); | ||
|
||
let body = ''; | ||
sock.setEncoding('utf8'); | ||
sock.on('data', (chunk) => { | ||
body += chunk; | ||
}); | ||
sock.on('end', common.mustCall(function() { | ||
assert.strictEqual(body, 'HTTP/1.1 400 Bad Request\r\n' + | ||
'Connection: close\r\n\r\n'); | ||
server.close(); | ||
})); | ||
} |