-
Notifications
You must be signed in to change notification settings - Fork 176
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Post Request Body must be read #558
Comments
Hello @bdurrer, nice to see you opened an issue here after we discussed this on Slack. It makes sense (kind of) that HttpClient wants the request body to be read: for the connection to be reused for another request, it must obviously be flushed in both directions. On Slack you also mentioned how Postman is not affected by this problem. I think this is because Postman sends a single request and does not care about reusing the connection. Although a Better yet, we could read the request body before even trying to route the request; that's what PHP does IIRC. Obviously PHP has a configurable limit on request body size, which we could implement too. PHP also automatically parses uploaded files (I think they are exempt from the body size limit btw) and stores them in a temporary directory; that, too, would be nice to have, and maybe even necessary. The problem lies in the "before sending response headers" part, as we don't know when exactly HttpListener will send them, unless we block all direct access to HttpListener methods. This is obviously a breaking change. To recap, there are two possible solutions:
I personally lean on the side of 1: more complicated but it looks more like a solution as opposed to a convoluted workaround. Thoughts, anyone? |
My personal opinion is that we should not read the whole body. |
Hello, I agreed with @radioegor146. Access to I/O should be minimal to avoid performance issues. |
@radioegor146 @geoperez thanks a lot for chiming in. Reading on demand is in fact simpler, and not reading at all is even simpler than that 😄 but the question is: what do we do if there is a request body and no handler reads it? Some quick proposals:
Also, is anyone willing to research whether this HttpClient behavior is a bug (so we're discussing the gender of angels, as the Italian saying goes) or is dictated by some RFC? Unfortunately I'm very tight on time these days. |
LOL, why are Italians discussing that? Anyway, number two could be a better approach. A mix between reading if the length is small (set a custom threshold) and closing the connection if the length is shady. |
So, number 2 with number 3 as a fallback. Looks good. 👍 <OffTopic>
🤣🤣🤣 @geoperez ¡gracias por alegrarme el día! To "discuss the gender of angels" in Italian means to discuss an idle, useless topic, wasting time that could be better spent. </OffTopic> On second thought, however, there are no angels involved here. EmbedIO currently has no protection against the type of attacks mentioned by @radioegor146. A malicious client may send a 4Gb POST body to an EmbedIO server running on a Raspberry Pi, and we'll happily try to read it all and probably deserialize it too! 😱💥💥💥🙈 Since this is not the same problem reported by @bdurrer (although clearly related), should I open another issue @geoperez? |
I'm staying with the second option. I'm sure, that if there is an HTTP request, you can obviously get the size of the data (by reading it at least partially). |
@rdeago probably yes. |
Describe the bug
It appears that C# HttpClient throws an exception when EmbedIO answers to an POST request without reading the sent request body first.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Maybe EmbedIo has to read the body if the user's code did not do that specifically. Note that
HttpContext.GetRequestBodyAsStringAsync();
and its friends can be called even on requests that cannot have a body (e.g. GET), so a generic solution for all verbs should be possibleSetup:
The text was updated successfully, but these errors were encountered: