Reputation: 311
I need to disable receiving http packets in chunked format in wso2 api manager 3.2.0 in order to protect against HTTP Request Smuggling , web cache poising and other server attacks .how can I do this?
Upvotes: 0
Views: 489
Reputation: 2467
Disabling Message Chunking from official API Manager documentation.
You can also try
<property name="DISABLE_CHUNKING" value="true" scope="axis2" />
Upvotes: 1