Added support for partial response body processing.

This commit is contained in:
ivanr
2007-09-21 23:23:11 +00:00
parent 59333a6a81
commit 9ed3cf9e5a
4 changed files with 245 additions and 91 deletions

View File

@@ -1,7 +1,14 @@
?? ??? 2007 - 2.5.0-dev3
------------------------
* ModSecurity will now process phases 3 and 4 when request processing
* Enable ModSecurity to look at partial response bodies. In previous
versions ModSecurity would respond with status code 500 when the
response body was too long. Now, if SecResponseBodyLimitAction is
set to "ProcessPartial", it will process the part of the response
body received up until that point but send the rest without buffering.
* ModSecurity will now process phases 3 and 4 even when request processing
is interrupted (either by Apache - e.g. by responding with 400, 401
or 403, or by ModSecurity itself).