You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to RFC 6455, headers for WebSocket upgrades are capitalized as Sec-WebSocket-* (e.g. Sec-WebSocket-Key). CanonicalHeaderKey should canonicalize those headers to be compliant with the spec.
What did you see instead?
CanonicalizeHeaderKey returns header keys capitalized as Sec-Websocket-* (without the uppercase S in Socket).
While this may not seem like a big deal, I've encountered real-world servers that rely on the correct capitalization (obviously not a good idea). It's especially problematic because all HTTP request parsing canonicalizes the header keys. This has led to some pretty severe issues with a proxy server I had running in production that had to forward WebSocket requests to arbitrary servers.
The text was updated successfully, but these errors were encountered:
I don't think we're going to do anything here. RFC 6455 can't mandate the case of headers, since HTTP/1 says that they're case insensitive. And in HTTP/2 there is no case on the wire.
Sorry. I don't want to complicate Go and encourage buggy libraries from assuming case.
What version of Go are you using (
go version
)?go version go1.7.4 linux/amd64
What operating system and processor architecture are you using (
go env
)?What did you do?
Minimal reproduction: https://play.golang.org/p/jMuUMK5TDL
What did you expect to see?
According to RFC 6455, headers for WebSocket upgrades are capitalized as
Sec-WebSocket-*
(e.g.Sec-WebSocket-Key
).CanonicalHeaderKey
should canonicalize those headers to be compliant with the spec.What did you see instead?
CanonicalizeHeaderKey
returns header keys capitalized asSec-Websocket-*
(without the uppercaseS
inSocket
).While this may not seem like a big deal, I've encountered real-world servers that rely on the correct capitalization (obviously not a good idea). It's especially problematic because all HTTP request parsing canonicalizes the header keys. This has led to some pretty severe issues with a proxy server I had running in production that had to forward WebSocket requests to arbitrary servers.
The text was updated successfully, but these errors were encountered: