Node Connect Reflected Cross-Site Scripting in Sencha Labs Connect middleware
Moderate severity
GitHub Reviewed
Published
May 5, 2022
to the GitHub Advisory Database
•
Updated Aug 17, 2023
Description
Published by the National Vulnerability Database
Dec 11, 2019
Published to the GitHub Advisory Database
May 5, 2022
Reviewed
Aug 17, 2023
Last updated
Aug 17, 2023
node-connect before 2.8.2 has cross site scripting in Sencha Labs Connect middleware (vulnerability due to incomplete fix for CVE-2013-7370)
Overview
Connect is a stack of middleware that is executed in order in each request.
The "methodOverride" middleware allows the http post to override the method of the request with the value of the "_method" post key or with the header "x-http-method-override".
Because the user post input was not checked, req.method could contain any kind of value. Because the req.method did not match any common method VERB, connect answered with a 404 page containing the "Cannot
[method]
[url]
" content. The method was not properly encoded for output in the browser.Example:
Recommendation
Update to the newest version of Connect or disable methodOverride. It is not possible to avoid the vulnerability if you have enabled this middleware in the top of your stack.
Credit:
Sergio Arcos
References