-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Improved split Request to headers and body phase, use apr_brigade to deal with request body #29
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
Improved split Request to headers and body phase, use apr_brigade to deal with request body #29
Conversation
…d modsecProcessRequestBody
Thanks for the patch. I will apply and run some tests. |
Just doing some tests. I'm trying to upload file (+500Kb) and it is not working. Only very small files can be uploaded. Can you check? Also when i add this rule: I saw the message: |
hi, nginx use nonblocking event driven io module, so we cant read request/response body directly in processing phase. |
The error has been fixed with patch |
Hello, The patch looks fine. Could you merge it again to the trunk ? Trunk is a different (2.7.2) and it will fail to merge. Maybe submit a new pull ? Thanks Breno |
Hi, Breno |
Hello, Just tested the new trunk with your patch and when SecRuleEngine On and a rule like SecRule REQUEST_BODY "price" "phase:2,id:113,deny" it is not blocking the transaction anymore ad return 403. Could you take a look ? Thanks Breno |
Added response Headers/Body phase.