-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
Closed
Labels
confirmed-bugIssues with confirmed bugs.Issues with confirmed bugs.httpIssues or PRs related to the http subsystem.Issues or PRs related to the http subsystem.http_parserIssues and PRs related to the HTTP Parser dependency or the http_parser binding.Issues and PRs related to the HTTP Parser dependency or the http_parser binding.
Description
- Version: v12.1.0 v12.0.0
- Platform: MacOS 10.14.2 - Darwin Kernel Version 18.5.0: Mon Mar 11 20:40:32 PDT 2019; root:xnu-4903.251.3~3/RELEASE_X86_64 x8
6_64
My code:
index.js
var http = require('http');
var url = require('url');
http.createServer(function (req, res) {
res.writeHead(200, { 'Content-Type': 'text/html' });
var q = url.parse(req.url, true).query;
var search = q.search;
res.end(search);
}).listen(8080);
Starting command: node index.js
Chrome: Version 74.0.3729.131 (Official Build) (64-bit)
When I try to request to my http service, it is working fine with normal url like
http://localhost:8080/?search=example
But, when the url come to http://localhost:8080/?search=example|
or http://localhost:8080/?sea|rch=example
. My browser gets back This page isn’t working and HTTP ERROR 400
(the request did not appeared on Network tab of Chrome devtool) .
Try again with curl
or Postman
, these urls are working fine 🤔
=> When I use older node version like v11.11.0
I don't get any errors.
DavideAllavena
Metadata
Metadata
Assignees
Labels
confirmed-bugIssues with confirmed bugs.Issues with confirmed bugs.httpIssues or PRs related to the http subsystem.Issues or PRs related to the http subsystem.http_parserIssues and PRs related to the HTTP Parser dependency or the http_parser binding.Issues and PRs related to the HTTP Parser dependency or the http_parser binding.