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
The http server will crash if it has an incoming https request, with this error:
Uncaught ProtocolError: malformed MIME header line
In http lib's readRequest this line causes the error: [req.headers, err] = await tp.readMIMEHeader()
It's trying to read the https request, but since it's encrypted it fails at doing this. But there should be a way to detect such requests and just deny them without crashing the server.
The text was updated successfully, but these errors were encountered:
not related. This PR solve the problem of handling the end of the mime header but not encrypted mime. So it will still try to read the mime header but will fail.
The http server will crash if it has an incoming https request, with this error:
In http lib's
readRequest
this line causes the error:[req.headers, err] = await tp.readMIMEHeader()
It's trying to read the https request, but since it's encrypted it fails at doing this. But there should be a way to detect such requests and just deny them without crashing the server.
The text was updated successfully, but these errors were encountered: