I have website running on node.js & express server. I get to know that website have the following vulnerability.
A remote attacker can send specially crafted HTTP request and force it to make logging statements on wrong connection for certain traffic edge patterns. This results in concurrent use of memory pools for separate connections and triggers the impact.
It is interval of HTTP header exploit that create overflow into the server process to overwrite part of the stack to rewind the request handling by overwriting bytes of the next operations.
Once this is crafted accordingly towards exposed endpoint; the environment will be malfunctioned.
I have googled about this vulnerability and get to know that it is because of vulnerable Apache HTTP Server version. But my website is running on nginx, not on apache.
I have forwarded my application port to 80 from 3000 using nginx.
For a security, website also have cloudflare setup.
How can I mitigate this vulnerability?