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
It would be great to check incoming requests to make sure they are below a certain size. Otherwise, a malicious client could hit the server with a huge request and cause a denial-of-service attack. Perhaps this could be an adjustable value in config/server.cr.
The text was updated successfully, but these errors were encountered:
* Adding a MaximumRequestSizeHandler
* Configurable to be on/off. Off by default.
* Configurable to set the maximum request size. Default is 1MB.
Ref #1143
* Setting the spec max_size to something very small to fix the spec.
* Making max_size an Int64
* Removing the redundant settings in spec helper.
* Linting.
I don't have ameba on my mac...
* Adding docs to the head of the handler file.
It would be great to check incoming requests to make sure they are below a certain size. Otherwise, a malicious client could hit the server with a huge request and cause a denial-of-service attack. Perhaps this could be an adjustable value in
config/server.cr
.The text was updated successfully, but these errors were encountered: