mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-16 07:56:12 +03:00
Don't reject a large request with ProcessPartial set
This commit is contained in:
parent
063dd640e5
commit
498b9b2e7a
@ -779,7 +779,7 @@ static int hook_request_early(request_rec *r) {
|
|||||||
if (msr->request_content_length > msr->txcfg->reqbody_limit) {
|
if (msr->request_content_length > msr->txcfg->reqbody_limit) {
|
||||||
msr_log(msr, 1, "Request body (Content-Length) is larger than the "
|
msr_log(msr, 1, "Request body (Content-Length) is larger than the "
|
||||||
"configured limit (%ld).", msr->txcfg->reqbody_limit);
|
"configured limit (%ld).", msr->txcfg->reqbody_limit);
|
||||||
if(msr->txcfg->is_enabled != MODSEC_DETECTION_ONLY)
|
if(msr->txcfg->is_enabled != MODSEC_DETECTION_ONLY && msr->txcfg->if_limit_action != REQUEST_BODY_LIMIT_ACTION_PARTIAL)
|
||||||
return HTTP_REQUEST_ENTITY_TOO_LARGE;
|
return HTTP_REQUEST_ENTITY_TOO_LARGE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user