-
Notifications
You must be signed in to change notification settings - Fork 7.3k
URI malformed problem in decodeURIComponent #67
Comments
May I guess that you have the same problem as I had in http://github.com/ry/node/issues#issue/60 |
OK, This does indeed seem to be a dulicate of http://github.com/ry/node/issues#issue/60 |
It looks like this issue can probably be closed per: http://github.com/ry/node/issues/issue/60#issue/60/comment/175870 |
I just ran into this error when a client encoded 'ê' as '%EA' and an 'é' as "%E9" and then sent them to my node server. Attempting to decode either of them result in the uri malformed error:
I thought I would post this to put it back on the radar since it seems the working assumption is that it is fixed. |
I believe it's a bug in your client. It should send utf8-encoded characters, but it uses some weird one-byte encoding instead.
|
Hi, I've opened up a node app which uses fab on port 8080. This means I get a lot of happy junk thrown my way, bots trolling for proxies, basically. That's not an issue until the urls contain multiple encoded characters, like %20 et.c.
I then get the following:
It seems to work fine with just one char, like a single %20 somewhere, but breaks on long lines of encoded garbage.
The text was updated successfully, but these errors were encountered: