yurikrupnik / node-playground

playing more
0 stars 0 forks source link

Update dependency webpack-dev-middleware to v5 [SECURITY] - autoclosed #41

Closed renovate[bot] closed 3 months ago

renovate[bot] commented 8 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
webpack-dev-middleware 1.12.0 -> 5.3.4 age adoption passing confidence

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`](https://togithub.com/webpack/webpack-dev-middleware/releases/tag/v5.3.4) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v5.3.3...v5.3.4) ##### [5.3.4](https://togithub.com/webpack/webpack-dev-middleware/compare/v5.3.3...v5.3.4) (2024-03-20) ##### Bug Fixes - **security:** do not allow to read files above ([#​1779](https://togithub.com/webpack/webpack-dev-middleware/issues/1779)) ([189c4ac](https://togithub.com/webpack/webpack-dev-middleware/commit/189c4ac7d2344ec132a4689e74dc837ec5be0132)) ### [`v5.3.3`](https://togithub.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#533-2022-05-18) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v5.3.2...v5.3.3) ### [`v5.3.2`](https://togithub.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#532-2022-05-17) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v5.3.1...v5.3.2) ### [`v5.3.1`](https://togithub.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#531-2022-02-01) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v5.3.0...v5.3.1) ### [`v5.3.0`](https://togithub.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#530-2021-12-16) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v5.2.2...v5.3.0) ##### Features - added types ([a2fa77f](https://togithub.com/webpack/webpack-dev-middleware/commit/a2fa77f87ad4d9912d08a68624e41380821d4d10)) - removed cjs wrapper ([#​1146](https://togithub.com/webpack/webpack-dev-middleware/issues/1146)) ([b6d53d3](https://togithub.com/webpack/webpack-dev-middleware/commit/b6d53d3f4d43c4c0e646e8d06355f3b4c9893a4f)) ##### [5.2.2](https://togithub.com/webpack/webpack-dev-middleware/compare/v5.2.1...v5.2.2) (2021-11-17) ##### Chore - update `schema-utils` package to `4.0.0` version ##### [5.2.1](https://togithub.com/webpack/webpack-dev-middleware/compare/v5.2.0...v5.2.1) (2021-09-25) - internal release, no visible changes and features ### [`v5.2.2`](https://togithub.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#522-2021-11-17) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v5.2.1...v5.2.2) ### [`v5.2.1`](https://togithub.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#521-2021-09-25) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v5.2.0...v5.2.1) - internal release, no visible changes and features ### [`v5.2.0`](https://togithub.com/webpack/webpack-dev-middleware/releases/tag/v5.2.0) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v5.1.0...v5.2.0) ##### Features - allow array for `headers` option ([#​1042](https://togithub.com/webpack/webpack-dev-middleware/issues/1042)) ([5a6a3f0](https://togithub.com/webpack/webpack-dev-middleware/commit/5a6a3f0f8e6b0f8fef33629f0f6fa5bed545a88c)) ### [`v5.1.0`](https://togithub.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#510-2021-09-09) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v5.0.0...v5.1.0) ##### Features - don't read full file if `Range` header is present ([e8b21f0](https://togithub.com/webpack/webpack-dev-middleware/commit/e8b21f0979c4807b28f7be45aff0d25cca1585ae)) - output more information on errors ([#​1024](https://togithub.com/webpack/webpack-dev-middleware/issues/1024)) ([7df9e44](https://togithub.com/webpack/webpack-dev-middleware/commit/7df9e449945a852622135f3f0857599ad7b8af64)) ##### Bug Fixes - reduced package size by removing `mem` package ([#​1027](https://togithub.com/webpack/webpack-dev-middleware/issues/1027)) ([0d55268](https://togithub.com/webpack/webpack-dev-middleware/commit/0d55268478f9cbba122855e2be9d7493350d4d5d)) ### [`v5.0.0`](https://togithub.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#500-2021-06-02) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v4.3.0...v5.0.0) ##### ⚠ BREAKING CHANGES - minimum supported `Node.js` version is `12.13.0` ([#​928](https://togithub.com/webpack/webpack-dev-middleware/issues/928)) ([4cffeff](https://togithub.com/webpack/webpack-dev-middleware/commit/4cffeffb5fd07ea79e5a7a5a0cdb3f08f3856c06)) ### [`v4.3.0`](https://togithub.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#430-2021-05-19) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v4.2.0...v4.3.0) ##### Features - add `getFilenameFromUrl` to API ([#​911](https://togithub.com/webpack/webpack-dev-middleware/issues/911)) ([1edc726](https://togithub.com/webpack/webpack-dev-middleware/commit/1edc7263ff62cfd6456f35e3cb3c2e30c3ac379a)) ##### Bug Fixes - husky config ([#​904](https://togithub.com/webpack/webpack-dev-middleware/issues/904)) ([8a423be](https://togithub.com/webpack/webpack-dev-middleware/commit/8a423bea3f1641e99c1f6fed56630bfe128b62d8)) - typo depandabot -> dependabot ([#​905](https://togithub.com/webpack/webpack-dev-middleware/issues/905)) ([7062990](https://togithub.com/webpack/webpack-dev-middleware/commit/7062990a55d21d2e35de832ea593f7b088bf054b)) ### [`v4.2.0`](https://togithub.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#420-2021-05-10) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v4.1.0...v4.2.0) ##### Features - allow the `headers` option to accept function ([#​897](https://togithub.com/webpack/webpack-dev-middleware/issues/897)) ([966afb3](https://togithub.com/webpack/webpack-dev-middleware/commit/966afb3e331f09912bb9fc5f403e758f586b1a07)) ### [`v4.1.0`](https://togithub.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#410-2021-01-15) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v4.0.4...v4.1.0) ##### Features - added the `stats` option ([376cdba](https://togithub.com/webpack/webpack-dev-middleware/commit/376cdba4b6d3f70414d3d1707f80539b7523e486)) ##### [4.0.4](https://togithub.com/webpack/webpack-dev-middleware/compare/v4.0.3...v4.0.4) (2021-01-13) ##### Bug Fixes - compatibility with webpack@4 ([#​816](https://togithub.com/webpack/webpack-dev-middleware/issues/816)) ([acdfd4d](https://togithub.com/webpack/webpack-dev-middleware/commit/acdfd4d8b671ba98b601ea4d53c7dccea3270e73)) ##### [4.0.3](https://togithub.com/webpack/webpack-dev-middleware/compare/v4.0.1...v4.0.3) (2021-01-12) ##### Bug Fixes - output `stats` to `stdout` instead `stderr`, how does `webpack-cli`, if you need hide `stats` from output please use `{ stats: false }` or `{ stats: 'none' }` ([4de0f97](https://togithub.com/webpack/webpack-dev-middleware/commit/4de0f97596d52a7182ac108a9b9865462fca54fe)) - colors are working for `stats` ([4de0f97](https://togithub.com/webpack/webpack-dev-middleware/commit/4de0f97596d52a7182ac108a9b9865462fca54fe)) - schema description ([#​783](https://togithub.com/webpack/webpack-dev-middleware/issues/783)) ([f9ce2b2](https://togithub.com/webpack/webpack-dev-middleware/commit/f9ce2b2537c331901e230c5a8452f4b91d45c713)) - skip `Content-type header` on unknown types ([#​809](https://togithub.com/webpack/webpack-dev-middleware/issues/809)) ([5c9eee5](https://togithub.com/webpack/webpack-dev-middleware/commit/5c9eee549be264f6df202d960b7cd10bfff7f97d)) ##### [4.0.2](https://togithub.com/webpack/webpack-dev-middleware/compare/v4.0.1...v4.0.2) (2020-11-10) ##### Bug Fixes - compatibility with the `headers` option ([#​763](https://togithub.com/webpack/webpack-dev-middleware/issues/763)) ([7c4cac5](https://togithub.com/webpack/webpack-dev-middleware/commit/7c4cac538dc7facf3c3334863ec3a49b14e16630)) ##### [4.0.1](https://togithub.com/webpack/webpack-dev-middleware/compare/v4.0.0...v4.0.1) (2020-11-09) ##### Bug Fixes - compatibility with `connect` ([b83a1db](https://togithub.com/webpack/webpack-dev-middleware/commit/b83a1db264b4fb50361264cf98f102b34413bfaa)) ### [`v4.0.4`](https://togithub.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#404-2021-01-13) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v4.0.3...v4.0.4) ### [`v4.0.3`](https://togithub.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#403-2021-01-12) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v4.0.2...v4.0.3) ### [`v4.0.2`](https://togithub.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#402-2020-11-10) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v4.0.1...v4.0.2) ### [`v4.0.1`](https://togithub.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#401-2020-11-09) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v4.0.0...v4.0.1) ### [`v4.0.0`](https://togithub.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#400-2020-10-28) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v3.7.3...v4.0.0) ##### ⚠ BREAKING CHANGES - export in CommonJS format ##### Bug Fixes - compatibility with new webpack@5 API ([#​737](https://togithub.com/webpack/webpack-dev-middleware/issues/737)) ([f6054a0](https://togithub.com/webpack/webpack-dev-middleware/commit/f6054a00e0e804a9d9ef0f4b3075e6116fae6c99)) - handle the `auto` value of the `publicPath` option ([9b4c5ec](https://togithub.com/webpack/webpack-dev-middleware/commit/9b4c5ec924d8b25d374b95433191d549f9d3717f)) - support webpack@5 ([#​702](https://togithub.com/webpack/webpack-dev-middleware/issues/702)) ([9ccc327](https://togithub.com/webpack/webpack-dev-middleware/commit/9ccc3276466754bb10e7f5d0b76f63de2a913e92)) ### [`v3.7.3`](https://togithub.com/webpack/webpack-dev-middleware/releases/tag/v3.7.3) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v3.7.2...v3.7.3) ##### [3.7.3](https://togithub.com/webpack/webpack-dev-middleware/compare/v3.7.2...v3.7.3) (2020-12-15) ##### Bug Fixes - peer dependencies with webpack@5 ([#​798](https://togithub.com/webpack/webpack-dev-middleware/issues/798)) ([71b2bdf](https://togithub.com/webpack/webpack-dev-middleware/commit/71b2bdf)) ### [`v3.7.2`](https://togithub.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#372-2019-09-28) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v3.7.1...v3.7.2) ### [`v3.7.1`](https://togithub.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#371-2019-09-03) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v3.7.0...v3.7.1) ### [`v3.7.0`](https://togithub.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#370-2019-05-15) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v3.6.2...v3.7.0) ##### Features - support `HEAD` method by default ([#​398](https://togithub.com/webpack/webpack-dev-middleware/issues/398)) ([ec3d5eb](https://togithub.com/webpack/webpack-dev-middleware/commit/ec3d5eb)) ### [`v3.6.2`](https://togithub.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#362-2019-04-03) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v3.6.1...v3.6.2) ##### Bug Fixes - check existence of `res.getHeader` and set the correct Content-Type ([#​385](https://togithub.com/webpack/webpack-dev-middleware/issues/385)) ([56dc705](https://togithub.com/webpack/webpack-dev-middleware/commit/56dc705)) ### [`v3.6.1`](https://togithub.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#361-2019-03-06) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v3.6.0...v3.6.1) ##### Bug Fixes - do not overwrite Content-Type if header already exists ([#​377](https://togithub.com/webpack/webpack-dev-middleware/issues/377)) ([b2a6fed](https://togithub.com/webpack/webpack-dev-middleware/commit/b2a6fed)) ### [`v3.6.0`](https://togithub.com/webpack/webpack-dev-middleware/releases/tag/v3.6.0) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v3.5.2...v3.6.0) ##### Features - configurable file system via options.fs ([#​370](https://togithub.com/webpack/webpack-dev-middleware/issues/370)) ([1762cb3](https://togithub.com/webpack/webpack-dev-middleware/commit/1762cb3)) ### [`v3.5.2`](https://togithub.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#352-2019-02-06) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v3.5.1...v3.5.2) ##### Bug Fixes - don't add charset to `usdz` file type ([#​357](https://togithub.com/webpack/webpack-dev-middleware/issues/357)) ([b135b3d](https://togithub.com/webpack/webpack-dev-middleware/commit/b135b3d)) ### [`v3.5.1`](https://togithub.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#351-2019-01-17) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v3.5.0...v3.5.1) ##### Bug Fixes - remove querystring from filenames when writing to disk ([#​361](https://togithub.com/webpack/webpack-dev-middleware/issues/361)) ([90d0d94](https://togithub.com/webpack/webpack-dev-middleware/commit/90d0d94)) ### [`v3.5.0`](https://togithub.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#350-2019-01-04) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v3.4.0...v3.5.0) ##### Bug Fixes - **middleware:** do not add 'null' to Content-Type ([#​355](https://togithub.com/webpack/webpack-dev-middleware/issues/355)) ([cf4d7a9](https://togithub.com/webpack/webpack-dev-middleware/commit/cf4d7a9)) ##### Features - allow to redefine `mimeTypes` (possible to use `force` option) ([#​349](https://togithub.com/webpack/webpack-dev-middleware/issues/349)) ([e56a181](https://togithub.com/webpack/webpack-dev-middleware/commit/e56a181)) ### [`v3.4.0`](https://togithub.com/webpack/webpack-dev-middleware/releases/tag/v3.4.0) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v3.3.0...v3.4.0) ##### `Bug Fixes` - **index:** don't modify the default behavior for `unhandledRejection` ([#​340](https://togithub.com/webpack/webpack-dev-middleware/issues/340)) ([f0a8e3e](https://togithub.com/webpack/webpack-dev-middleware/commit/f0a8e3e)) - **middleware:** replace `url-join` with `path.posix.join` ([#​334](https://togithub.com/webpack/webpack-dev-middleware/issues/334)) ([d75802b](https://togithub.com/webpack/webpack-dev-middleware/commit/d75802b)) ### [`v3.3.0`](https://togithub.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#330-2018-09-10) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v3.2.0...v3.3.0) ##### Features - **middleware:** expose the memory filesystem (`response.locals.fs`) ([#​337](https://togithub.com/webpack/webpack-dev-middleware/issues/337)) ([f9a138e](https://togithub.com/webpack/webpack-dev-middleware/commit/f9a138e)) ### [`v3.2.0`](https://togithub.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#320-2018-08-23) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v3.1.3...v3.2.0) ##### Bug Fixes - **package:** 18 security vulnerabilities ([#​329](https://togithub.com/webpack/webpack-dev-middleware/issues/329)) ([5951de9](https://togithub.com/webpack/webpack-dev-middleware/commit/5951de9)) ##### Features - **middleware:** add `methods` option (`options.methods`) ([#​319](https://togithub.com/webpack/webpack-dev-middleware/issues/319)) ([fe6bb86](https://togithub.com/webpack/webpack-dev-middleware/commit/fe6bb86)) ### [`v3.1.3`](https://togithub.com/webpack/webpack-dev-middleware/releases/tag/v3.1.3) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v3.1.2...v3.1.3) #### Bugfixes - Excluded outputPath from URI escaping to fix [#​297](https://togithub.com/webpack/webpack-dev-middleware/issues/297). ([#​303](https://togithub.com/webpack/webpack-dev-middleware/issues/303)) - fix: fixes [#​290](https://togithub.com/webpack/webpack-dev-middleware/issues/290) - MultiCompiler exception with writeToDisk ([#​301](https://togithub.com/webpack/webpack-dev-middleware/issues/301)) ### [`v3.1.2`](https://togithub.com/webpack/webpack-dev-middleware/releases/tag/v3.1.2) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v3.1.1...v3.1.2) #### Updates - refactor: use chalk from webpack-log ([#​293](https://togithub.com/webpack/webpack-dev-middleware/issues/293)) ### [`v3.1.1`](https://togithub.com/webpack/webpack-dev-middleware/releases/tag/v3.1.1) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v3.1.0...v3.1.1) #### Bugfixes - fix(package): add chalk to peerDeps ([#​292](https://togithub.com/webpack/webpack-dev-middleware/issues/292)) ### [`v3.1.0`](https://togithub.com/webpack/webpack-dev-middleware/releases/tag/v3.1.0) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v3.0.1...v3.1.0) #### Bugfixes - On windows path spaces should resolve to %20 ([#​288](https://togithub.com/webpack/webpack-dev-middleware/issues/288)) - fixes [#​282](https://togithub.com/webpack/webpack-dev-middleware/issues/282). credit [@​cexoso](https://togithub.com/cexoso). in certain edge situations res.locals is undefined ([`d26c67c`](https://togithub.com/webpack/webpack-dev-middleware/commit/d26c67c)) #### Features - Allow Writing Files to Disk ([#​287](https://togithub.com/webpack/webpack-dev-middleware/issues/287)) ### [`v3.0.1`](https://togithub.com/webpack/webpack-dev-middleware/compare/v3.0.0...v3.0.1) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v3.0.0...v3.0.1) ### [`v3.0.0`](https://togithub.com/webpack/webpack-dev-middleware/releases/tag/v3.0.0) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v2.0.6...v3.0.0) #### Updates - Webpack 4 ([#​267](https://togithub.com/webpack/webpack-dev-middleware/issues/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 `watchOffset` option has been removed and the README has been updated with alternative means of accomplishing the same result for this module and webpack v4. - `middleware.webpack` now returns a `Promise` that should be handled with `.then` when needing to perform other actions, like adding additional middleware. ### [`v2.0.6`](https://togithub.com/webpack/webpack-dev-middleware/compare/v2.0.5...v2.0.6) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v2.0.5...v2.0.6) ### [`v2.0.5`](https://togithub.com/webpack/webpack-dev-middleware/compare/v2.0.4...v2.0.5) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v2.0.4...v2.0.5) ### [`v2.0.4`](https://togithub.com/webpack/webpack-dev-middleware/compare/v2.0.3...v2.0.4) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v2.0.3...v2.0.4) ### [`v2.0.3`](https://togithub.com/webpack/webpack-dev-middleware/compare/v2.0.2...v2.0.3) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v2.0.2...v2.0.3) ### [`v2.0.2`](https://togithub.com/webpack/webpack-dev-middleware/releases/tag/v2.0.2) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v2.0.1...v2.0.2) #### Updates - Implemented [`webpack-log`](https://togithub.com/webpack-contrib/webpack-log), removed dependencies related to the previous logging implementation. ### [`v2.0.1`](https://togithub.com/webpack/webpack-dev-middleware/releases/tag/v2.0.1) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v2.0.0...v2.0.1) Publish to correct `package.json`. ### [`v2.0.0`](https://togithub.com/webpack/webpack-dev-middleware/releases/tag/v2.0.0) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v1.12.2...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-level` and follows the same patterns as `webpack-dev-server`. #### Breaking Changes - `watchDelay` option was previous deprecated and has now been removed. - `reportTime` option renamed to `logTime` - `noInfo` option removed in favor of setting a `logLevel` higher than `'info'` - `quiet` option removed in favor of `logLevel: 'silent'` - `reporter` signature changed to `reporter(middlewareOptions, reporterOptions)` ### [`v1.12.2`](https://togithub.com/webpack/webpack-dev-middleware/releases/tag/v1.12.2) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v1.12.1...v1.12.2) #### Bugfixes - serve .wasm files as application/wasm (without charset) ([#​230](https://togithub.com/webpack/webpack-dev-middleware/issues/230)) ### [`v1.12.1`](https://togithub.com/webpack/webpack-dev-middleware/releases/tag/v1.12.1) [Compare Source](https://togithub.com/webpack/webpack-dev-middleware/compare/v1.12.0...v1.12.1) #### Updates - update `mime` package to avoid security vulnerability ([#​231](https://togithub.com/webpack/webpack-dev-middleware/issues/231))

Configuration

📅 Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



This PR was generated by Mend Renovate. View the repository job log.

renovate[bot] commented 8 months ago

⚠ 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:

The artifact failure details are included below:

File name: package-lock.json
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR! 
npm ERR! While resolving: yaa@1.0.0
npm ERR! Found: webpack@3.5.5
npm ERR! node_modules/webpack
npm ERR!   dev webpack@"3.5.5" from the root project
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer webpack@"^4.0.0 || ^5.0.0" from webpack-dev-middleware@5.3.4
npm ERR! node_modules/webpack-dev-middleware
npm ERR!   dev webpack-dev-middleware@"5.3.4" from the root project
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR! 
npm ERR! 
npm ERR! For a full report see:
npm ERR! /tmp/renovate/cache/others/npm/_logs/2024-03-21T23_33_17_709Z-eresolve-report.txt

npm ERR! A complete log of this run can be found in: /tmp/renovate/cache/others/npm/_logs/2024-03-21T23_33_17_709Z-debug-0.log
secure-code-warrior-for-github[bot] commented 8 months ago

Micro-Learning Topic: Path traversal (Detected by phrase)

Matched on "path traversal"

What is this? (2min video)

Path traversal vulnerabilities occur when inputs that have not been sufficiently validated or sanitised are used to build directory or file paths. If an attacker can influence the path being accessed by the server, they may be able to gain unauthorised access to files or even execute arbitrary code on the server (when coupled with file upload functionality).

Try a challenge in Secure Code Warrior

Helpful references
  • OWASP Input Validation Cheat Sheet - This cheatsheet is focused on providing clear, simple, actionable guidance for preventing injection and input validation flaws in your applications, including defence against path traversal.
  • OWASP Path Traversal - OWASP community page with comprehensive information about path traversal, and links to various OWASP resources to help detect or prevent it.