v8_inspector: any netty-based WS client cannot connect to inspector because Sec-WebSocket-Key check is not case-insensitive #7247
Labels
inspector
Issues and PRs related to the V8 inspector protocol
If you try to connect to node inspector
ws://127.0.0.1:9229/node
, you get400 Bad Request
.Because check
in the
inspector_socket.cc:523
failed.Bug in the
header_value_cb
function — headerSec-WebSocket-Key
is expected and it checked case-sensitive. But Netty sends this header assec-websocket-key
.The text was updated successfully, but these errors were encountered: