You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Express is adding a content length header even when the transfer-encoding is chunked. This is an issue in Node 5.6 since they upgraded to http-parser 2.6.1 (https://nodejs.org/en/blog/release/v5.6.0/). Specifically, this is related to CVE-2016-2086. Need to modify line 179-180 of response.js and enclose it in a logical IF to test if transfer-encoding is 'chunked'.