fix(deps): update dependency webpack-dev-middleware to v5 [security]
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
| webpack-dev-middleware | ^1.9.0 -> ^5.0.0 |
GitHub Vulnerability Alerts
CVE-2024-29180
Summary
The webpack-dev-middleware middleware does not validate the supplied URL address sufficiently before returning the local file. It is possible to access any file on the developer's machine.
Details
The middleware can either work with the physical filesystem when reading the files or it can use a virtualized in-memory memfs filesystem. If writeToDisk configuration option is set to true, the physical filesystem is used: https://github.com/webpack/webpack-dev-middleware/blob/7ed24e0b9f53ad1562343f9f517f0f0ad2a70377/src/utils/setupOutputFileSystem.js#L21
The getFilenameFromUrl method is used to parse URL and build the local file path. The public path prefix is stripped from the URL, and the unsecaped path suffix is appended to the outputPath: https://github.com/webpack/webpack-dev-middleware/blob/7ed24e0b9f53ad1562343f9f517f0f0ad2a70377/src/utils/getFilenameFromUrl.js#L82 As the URL is not unescaped and normalized automatically before calling the midlleware, it is possible to use %2e and %2f sequences to perform path traversal attack.
PoC
A blank project can be created containing the following configuration file webpack.config.js:
module.exports = { devServer: { devMiddleware: { writeToDisk: true } } };
When started, it is possible to access any local file, e.g. /etc/passwd:
$ curl localhost:8080/public/..%2f..%2f..%2f..%2f../etc/passwd
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:2:2:bin:/bin:/usr/sbin/nologin
sys:x:3:3:sys:/dev:/usr/sbin/nologin
sync:x:4:65534:sync:/bin:/bin/sync
games:x:5:60:games:/usr/games:/usr/sbin/nologin
Impact
The developers using webpack-dev-server or webpack-dev-middleware are affected by the issue. When the project is started, an attacker might access any file on the developer's machine and exfiltrate the content (e.g. password, configuration files, private source code, ...).
If the development server is listening on a public IP address (or 0.0.0.0), an attacker on the local network can access the local files without any interaction from the victim (direct connection to the port).
If the server allows access from third-party domains (CORS, Allow-Access-Origin: * ), an attacker can send a malicious link to the victim. When visited, the client side script can connect to the local server and exfiltrate the local files.
Recommendation
The URL should be unescaped and normalized before any further processing.
Release Notes
webpack/webpack-dev-middleware (webpack-dev-middleware)
v5.3.4
5.3.4 (2024-03-20)
Bug Fixes
v5.3.3
⚠ BREAKING CHANGES
- minimum supported webpack version is 5.0.0
- minimum supported Nodejs version is 14.15.0
5.3.3 (2022-05-18)
Bug Fixes
5.3.2 (2022-05-17)
Bug Fixes
5.3.1 (2022-02-01)
Bug Fixes
v5.3.2
⚠ BREAKING CHANGES
- minimum supported webpack version is 5.0.0
- minimum supported Nodejs version is 14.15.0
5.3.3 (2022-05-18)
Bug Fixes
5.3.2 (2022-05-17)
Bug Fixes
5.3.1 (2022-02-01)
Bug Fixes
v5.3.1
⚠ BREAKING CHANGES
- minimum supported webpack version is 5.0.0
- minimum supported Nodejs version is 14.15.0
5.3.3 (2022-05-18)
Bug Fixes
5.3.2 (2022-05-17)
Bug Fixes
5.3.1 (2022-02-01)
Bug Fixes
v5.3.0
⚠ BREAKING CHANGES
- minimum supported webpack version is 5.0.0
- minimum supported Nodejs version is 14.15.0
5.3.3 (2022-05-18)
Bug Fixes
5.3.2 (2022-05-17)
Bug Fixes
5.3.1 (2022-02-01)
Bug Fixes
v5.2.2
Features
5.2.2 (2021-11-17)
Chore
- update
schema-utilspackage to4.0.0version
5.2.1 (2021-09-25)
- internal release, no visible changes and features
v5.2.1
Features
5.2.2 (2021-11-17)
Chore
- update
schema-utilspackage to4.0.0version
5.2.1 (2021-09-25)
- internal release, no visible changes and features
v5.2.0
Features
5.2.2 (2021-11-17)
Chore
- update
schema-utilspackage to4.0.0version
5.2.1 (2021-09-25)
- internal release, no visible changes and features
v5.1.0
Features
- don't read full file if
Rangeheader is present (e8b21f0) - output more information on errors (#1024) (7df9e44)
Bug Fixes
v5.0.0
⚠ BREAKING CHANGES
v4.3.0
Features
Bug Fixes
v4.2.0
Features
v4.1.0
Features
- added the
statsoption (376cdba)
4.0.4 (2021-01-13)
Bug Fixes
4.0.3 (2021-01-12)
Bug Fixes
- output
statstostdoutinsteadstderr, how doeswebpack-cli, if you need hidestatsfrom output please use{ stats: false }or{ stats: 'none' }(4de0f97) - colors are working for
stats(4de0f97) - schema description (#783) (f9ce2b2)
- skip
Content-type headeron unknown types (#809) (5c9eee5)
4.0.2 (2020-11-10)
Bug Fixes
4.0.1 (2020-11-09)
Bug Fixes
- compatibility with
connect(b83a1db)
v4.0.4
Features
- added the
statsoption (376cdba)
4.0.4 (2021-01-13)
Bug Fixes
4.0.3 (2021-01-12)
Bug Fixes
- output
statstostdoutinsteadstderr, how doeswebpack-cli, if you need hidestatsfrom output please use{ stats: false }or{ stats: 'none' }(4de0f97) - colors are working for
stats(4de0f97) - schema description (#783) (f9ce2b2)
- skip
Content-type headeron unknown types (#809) (5c9eee5)
4.0.2 (2020-11-10)
Bug Fixes
4.0.1 (2020-11-09)
Bug Fixes
- compatibility with
connect(b83a1db)
v4.0.3
Features
- added the
statsoption (376cdba)
4.0.4 (2021-01-13)
Bug Fixes
4.0.3 (2021-01-12)
Bug Fixes
- output
statstostdoutinsteadstderr, how doeswebpack-cli, if you need hidestatsfrom output please use{ stats: false }or{ stats: 'none' }(4de0f97) - colors are working for
stats(4de0f97) - schema description (#783) (f9ce2b2)
- skip
Content-type headeron unknown types (#809) (5c9eee5)
4.0.2 (2020-11-10)
Bug Fixes
4.0.1 (2020-11-09)
Bug Fixes
- compatibility with
connect(b83a1db)
v4.0.2
Features
- added the
statsoption (376cdba)
4.0.4 (2021-01-13)
Bug Fixes
4.0.3 (2021-01-12)
Bug Fixes
- output
statstostdoutinsteadstderr, how doeswebpack-cli, if you need hidestatsfrom output please use{ stats: false }or{ stats: 'none' }(4de0f97) - colors are working for
stats(4de0f97) - schema description (#783) (f9ce2b2)
- skip
Content-type headeron unknown types (#809) (5c9eee5)
4.0.2 (2020-11-10)
Bug Fixes
4.0.1 (2020-11-09)
Bug Fixes
- compatibility with
connect(b83a1db)
v4.0.1
Features
- added the
statsoption (376cdba)
4.0.4 (2021-01-13)
Bug Fixes
4.0.3 (2021-01-12)
Bug Fixes
- output
statstostdoutinsteadstderr, how doeswebpack-cli, if you need hidestatsfrom output please use{ stats: false }or{ stats: 'none' }(4de0f97) - colors are working for
stats(4de0f97) - schema description (#783) (f9ce2b2)
- skip
Content-type headeron unknown types (#809) (5c9eee5)
4.0.2 (2020-11-10)
Bug Fixes
4.0.1 (2020-11-09)
Bug Fixes
- compatibility with
connect(b83a1db)
v4.0.0
Features
- added the
statsoption (376cdba)
4.0.4 (2021-01-13)
Bug Fixes
4.0.3 (2021-01-12)
Bug Fixes
- output
statstostdoutinsteadstderr, how doeswebpack-cli, if you need hidestatsfrom output please use{ stats: false }or{ stats: 'none' }(4de0f97) - colors are working for
stats(4de0f97) - schema description (#783) (f9ce2b2)
- skip
Content-type headeron unknown types (#809) (5c9eee5)
4.0.2 (2020-11-10)
Bug Fixes
4.0.1 (2020-11-09)
Bug Fixes
- compatibility with
connect(b83a1db)
v3.7.3
3.7.3 (2020-12-15)
Bug Fixes
v3.7.2
Bug Fixes
4.0.0-rc.0 (2020-02-19)
Bug Fixes
- respect
output.pathandoutput.publicPathoptions from the configuration - respect the
statsoption from the configuration - respect the
watchOptionsoption from the configuration - the
writeToDiskoption now correctly works in multi-compiler mode - the
outputFileSystemoption now correctly works in multi-compiler mode - respect
[hash]/[fullhash]inoutput.pathandoutput.publicPath - handle exceptions for filesystem operations
- the
Content-Typeheader doesn't havecharset=utf-8value for custom MIME types and MIME types which can be nonutf-8
Features
- validate options
- migrate on the
webpacklogger - migrate on the
memfspackage - improve performance
BREAKING CHANGES
- minimum supported Node.js version is
10.13.0 - the default value of the option
publicPathis taken from the value of theoutput.publicPathoption from the configuration (webpack.config.js) - the
statsoption was removed, the default value of thestatsoption is taken from the value of thestatsoption from the configuration (webpack.config.js) - the
watchOptionswas removed, the default value of thewatchOptionsoption is taken from the value of thewatchOptionsoption from the configuration (webpack.config.js) - the
Content-Typeheader doesn't havecharset=utf-8value for custom MIME types and MIME types which can be nonutf-8 - the
fsoption was renamed to theoutputFileSystemoption - the
lazyoption was removed without replacement - the
logger,logLevelandlogTimeoptions were removed without replacement. You can setup thelevelvalue using{ infrastructureLogging: { level: 'warn' } }, please read https://webpack.js.org/configuration/other-options/#infrastructurelogging. You can use theinfrastructurelog(infrastructureLoginwebpack@5) hook to customize logs. Thelogproperty in the middleware context was renamed tologger - the
mimeTypesoption first requires you to specify an extension and then a content-type -{ mimeTypes: { phtml: 'text/html' } } - the
forceoption from themimeTypesoption was removed without replacement - the
reporteroption was removed without replacement - the
getFilenameFromUrlmethod was removed from the API - the middleware
localsnow underres.locals.webpack- useres.locals.webpack.statsfor accessstatsandres.locals.webpack.outputFileSystemto accessoutputFileSystem
3.7.2 (2019-09-28)
Bug Fixes
3.7.1 (2019-09-03)
Bug Fixes
- directly used mkdirp instead of through Webpack (#436) (dff39a1)
- displayStats only logged (#427) (98deaf4)
- the
writeToFileoption has compatibility with webpack@5 (#459) (5c90e1e)
v3.7.1
Bug Fixes
4.0.0-rc.0 (2020-02-19)
Bug Fixes
- respect
output.pathandoutput.publicPathoptions from the configuration - respect the
statsoption from the configuration - respect the
watchOptionsoption from the configuration - the
writeToDiskoption now correctly works in multi-compiler mode - the
outputFileSystemoption now correctly works in multi-compiler mode - respect
[hash]/[fullhash]inoutput.pathandoutput.publicPath - handle exceptions for filesystem operations
- the
Content-Typeheader doesn't havecharset=utf-8value for custom MIME types and MIME types which can be nonutf-8
Features
- validate options
- migrate on the
webpacklogger - migrate on the
memfspackage - improve performance
BREAKING CHANGES
- minimum supported Node.js version is
10.13.0 - the default value of the option
publicPathis taken from the value of theoutput.publicPathoption from the configuration (webpack.config.js) - the
statsoption was removed, the default value of thestatsoption is taken from the value of thestatsoption from the configuration (webpack.config.js) - the
watchOptionswas removed, the default value of thewatchOptionsoption is taken from the value of thewatchOptionsoption from the configuration (webpack.config.js) - the
Content-Typeheader doesn't havecharset=utf-8value for custom MIME types and MIME types which can be nonutf-8 - the
fsoption was renamed to theoutputFileSystemoption - the
lazyoption was removed without replacement - the
logger,logLevelandlogTimeoptions were removed without replacement. You can setup thelevelvalue using{ infrastructureLogging: { level: 'warn' } }, please read https://webpack.js.org/configuration/other-options/#infrastructurelogging. You can use theinfrastructurelog(infrastructureLoginwebpack@5) hook to customize logs. Thelogproperty in the middleware context was renamed tologger - the
mimeTypesoption first requires you to specify an extension and then a content-type -{ mimeTypes: { phtml: 'text/html' } } - the
forceoption from themimeTypesoption was removed without replacement - the
reporteroption was removed without replacement - the
getFilenameFromUrlmethod was removed from the API - the middleware
localsnow underres.locals.webpack- useres.locals.webpack.statsfor accessstatsandres.locals.webpack.outputFileSystemto accessoutputFileSystem
3.7.2 (2019-09-28)
Bug Fixes
3.7.1 (2019-09-03)
Bug Fixes
- directly used mkdirp instead of through Webpack (#436) (dff39a1)
- displayStats only logged (#427) (98deaf4)
- the
writeToFileoption has compatibility with webpack@5 (#459) (5c90e1e)
v3.7.0
Bug Fixes
4.0.0-rc.0 (2020-02-19)
Bug Fixes
- respect
output.pathandoutput.publicPathoptions from the configuration - respect the
statsoption from the configuration - respect the
watchOptionsoption from the configuration - the
writeToDiskoption now correctly works in multi-compiler mode - the
outputFileSystemoption now correctly works in multi-compiler mode - respect
[hash]/[fullhash]inoutput.pathandoutput.publicPath - handle exceptions for filesystem operations
- the
Content-Typeheader doesn't havecharset=utf-8value for custom MIME types and MIME types which can be nonutf-8
Features
- validate options
- migrate on the
webpacklogger - migrate on the
memfspackage - improve performance
BREAKING CHANGES
- minimum supported Node.js version is
10.13.0 - the default value of the option
publicPathis taken from the value of theoutput.publicPathoption from the configuration (webpack.config.js) - the
statsoption was removed, the default value of thestatsoption is taken from the value of thestatsoption from the configuration (webpack.config.js) - the
watchOptionswas removed, the default value of thewatchOptionsoption is taken from the value of thewatchOptionsoption from the configuration (webpack.config.js) - the
Content-Typeheader doesn't havecharset=utf-8value for custom MIME types and MIME types which can be nonutf-8 - the
fsoption was renamed to theoutputFileSystemoption - the
lazyoption was removed without replacement - the
logger,logLevelandlogTimeoptions were removed without replacement. You can setup thelevelvalue using{ infrastructureLogging: { level: 'warn' } }, please read https://webpack.js.org/configuration/other-options/#infrastructurelogging. You can use theinfrastructurelog(infrastructureLoginwebpack@5) hook to customize logs. Thelogproperty in the middleware context was renamed tologger - the
mimeTypesoption first requires you to specify an extension and then a content-type -{ mimeTypes: { phtml: 'text/html' } } - the
forceoption from themimeTypesoption was removed without replacement - the
reporteroption was removed without replacement - the
getFilenameFromUrlmethod was removed from the API - the middleware
localsnow underres.locals.webpack- useres.locals.webpack.statsfor accessstatsandres.locals.webpack.outputFileSystemto accessoutputFileSystem
3.7.2 (2019-09-28)
Bug Fixes
3.7.1 (2019-09-03)
Bug Fixes
- directly used mkdirp instead of through Webpack (#436) (dff39a1)
- displayStats only logged (#427) (98deaf4)
- the
writeToFileoption has compatibility with webpack@5 (#459) (5c90e1e)
v3.6.2
Bug Fixes
v3.6.1
Bug Fixes
v3.6.0
Features
v3.5.2
Bug Fixes
v3.5.1
Bug Fixes
v3.5.0
Bug Fixes
Features
v3.4.0
Bug Fixes
-
index: don't modify the default behavior for
unhandledRejection(#340) (f0a8e3e) -
middleware: replace
url-joinwithpath.posix.join(#334) (d75802b)
v3.3.0
Features
v3.2.0
Bug Fixes
Features
v3.1.3
Bugfixes
- Excluded outputPath from URI escaping to fix #297. (#303)
- fix: fixes #290 - MultiCompiler exception with writeToDisk (#301)
v3.1.2
Updates
- refactor: use chalk from webpack-log (#293)
v3.1.1
Bugfixes
- fix(package): add chalk to peerDeps (#292)
v3.1.0
Bugfixes
- On windows path spaces should resolve to %20 (#288)
- fixes #282. credit @cexoso. in certain edge situations res.locals is undefined (
d26c67c)
Features
- Allow Writing Files to Disk (#287)
v3.0.1
v3.0.0
Updates
- Webpack 4 (#267)
- remove watchOffset option in favor of time-fix-plugin
Breaking Changes
- Introduces full support for webpack v4 and removes support for lesser versions.
- The
watchOffsetoption has been removed and the README has been updated with alternative means of accomplishing the same result for this module and webpack v4. -
middleware.webpacknow returns aPromisethat should be handled with.thenwhen needing to perform other actions, like adding additional middleware.
v2.0.6
v2.0.5
v2.0.4
v2.0.3
v2.0.2
Updates
- Implemented
webpack-log, removed dependencies related to the previous logging implementation.
v2.0.1
Publish to correct package.json.
v2.0.0
This major release introduces a comprehensive refactor of the codebase and move to leverage more ES6 as supported by Node 6+. It also introduced a number of breaking changes, as outlined below.
Node Version Support
webpack-dev-middleware version 2 and higher will only support Node 6.x and higher. Active LTS for Node 4.x ended October 31st, 2017 and entered maintenance on that date. Likewise, the version 1.x branch of webpack-dev-middleware will enter maintenance on that date.
Informative Changes
- logging is now handled by
log-leveland follows the same patterns aswebpack-dev-server.
Breaking Changes
-
watchDelayoption was previous deprecated and has now been removed. -
reportTimeoption renamed tologTime -
noInfooption removed in favor of setting alogLevelhigher than'info' -
quietoption removed in favor oflogLevel: 'silent' -
reportersignature changed toreporter(middlewareOptions, reporterOptions)
Configuration
📅 Schedule: Branch creation - "" in timezone US/Eastern, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
- [ ] If you want to rebase/retry this PR, check this box
This PR was generated by Mend Renovate. View the repository job log.
⚠ Artifact update problem
Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.
♻ Renovate will retry this branch, including artifacts, only when one of the following happens:
- any of the package files in this branch needs updating, or
- the branch becomes conflicted, or
- you click the rebase/retry checkbox if found above, or
- you rename this PR's title to start with "rebase!" to trigger it manually
The artifact failure details are included below:
File name: yarn.lock
/opt/containerbase/tools/corepack/0.28.0/14.18.2/node_modules/corepack/dist/yarn.js:2
process.env.COREPACK_ENABLE_DOWNLOAD_PROMPT??='1'
^^^
SyntaxError: Unexpected token '??='
at wrapSafe (internal/modules/cjs/loader.js:1001:16)
at Module._compile (internal/modules/cjs/loader.js:1049:27)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1114:10)
at Module.load (internal/modules/cjs/loader.js:950:32)
at Function.Module._load (internal/modules/cjs/loader.js:790:12)
at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:76:12)
at internal/main/run_main_module.js:17:47
⚠️ Artifact update problem
Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.
♻ Renovate will retry this branch, including artifacts, only when one of the following happens:
- any of the package files in this branch needs updating, or
- the branch becomes conflicted, or
- you click the rebase/retry checkbox if found above, or
- you rename this PR's title to start with "rebase!" to trigger it manually
The artifact failure details are included below:
File name: yarn.lock
/opt/containerbase/tools/corepack/0.28.2/14.18.2/node_modules/corepack/dist/yarn.js:2
process.env.COREPACK_ENABLE_DOWNLOAD_PROMPT??='1'
^^^
SyntaxError: Unexpected token '??='
at wrapSafe (internal/modules/cjs/loader.js:1001:16)
at Module._compile (internal/modules/cjs/loader.js:1049:27)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1114:10)
at Module.load (internal/modules/cjs/loader.js:950:32)
at Function.Module._load (internal/modules/cjs/loader.js:790:12)
at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:76:12)
at internal/main/run_main_module.js:17:47