BryanLaura / Google-api-python-client

Creative Commons Attribution 4.0 International
2 stars 1 forks source link

Update dependency webpack-dev-middleware to v5.3.4 [SECURITY] #430

Open renovate[bot] opened 3 months ago

renovate[bot] commented 3 months ago

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
webpack-dev-middleware 5.3.3 -> 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://redirect.github.com/webpack/webpack-dev-middleware/releases/tag/v5.3.4) [Compare Source](https://redirect.github.com/webpack/webpack-dev-middleware/compare/v5.3.3...v5.3.4) ##### [5.3.4](https://redirect.github.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://redirect.github.com/webpack/webpack-dev-middleware/issues/1779)) ([189c4ac](https://redirect.github.com/webpack/webpack-dev-middleware/commit/189c4ac7d2344ec132a4689e74dc837ec5be0132)) ### [`v5.3.3`](https://redirect.github.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#533-2022-05-18) [Compare Source](https://redirect.github.com/webpack/webpack-dev-middleware/compare/v5.3.2...v5.3.3) ### [`v5.3.2`](https://redirect.github.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#532-2022-05-17) [Compare Source](https://redirect.github.com/webpack/webpack-dev-middleware/compare/v5.3.1...v5.3.2) ### [`v5.3.1`](https://redirect.github.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#531-2022-02-01) [Compare Source](https://redirect.github.com/webpack/webpack-dev-middleware/compare/v5.3.0...v5.3.1) ### [`v5.3.0`](https://redirect.github.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#530-2021-12-16) [Compare Source](https://redirect.github.com/webpack/webpack-dev-middleware/compare/v5.2.2...v5.3.0) ##### Features - added types ([a2fa77f](https://redirect.github.com/webpack/webpack-dev-middleware/commit/a2fa77f87ad4d9912d08a68624e41380821d4d10)) - removed cjs wrapper ([#​1146](https://redirect.github.com/webpack/webpack-dev-middleware/issues/1146)) ([b6d53d3](https://redirect.github.com/webpack/webpack-dev-middleware/commit/b6d53d3f4d43c4c0e646e8d06355f3b4c9893a4f)) ##### [5.2.2](https://redirect.github.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://redirect.github.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://redirect.github.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#522-2021-11-17) [Compare Source](https://redirect.github.com/webpack/webpack-dev-middleware/compare/v5.2.1...v5.2.2) ### [`v5.2.1`](https://redirect.github.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#521-2021-09-25) [Compare Source](https://redirect.github.com/webpack/webpack-dev-middleware/compare/v5.2.0...v5.2.1) - internal release, no visible changes and features ### [`v5.2.0`](https://redirect.github.com/webpack/webpack-dev-middleware/releases/tag/v5.2.0) [Compare Source](https://redirect.github.com/webpack/webpack-dev-middleware/compare/v5.1.0...v5.2.0) ##### Features - allow array for `headers` option ([#​1042](https://redirect.github.com/webpack/webpack-dev-middleware/issues/1042)) ([5a6a3f0](https://redirect.github.com/webpack/webpack-dev-middleware/commit/5a6a3f0f8e6b0f8fef33629f0f6fa5bed545a88c)) ### [`v5.1.0`](https://redirect.github.com/webpack/webpack-dev-middleware/blob/HEAD/CHANGELOG.md#510-2021-09-09) [Compare Source](https://redirect.github.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://redirect.github.com/webpack/webpack-dev-middleware/commit/e8b21f0979c4807b28f7be45aff0d25cca1585ae)) - output more information on errors ([#​1024](https://redirect.github.com/webpack/webpack-dev-middleware/issues/1024)) ([7df9e44](https://redirect.github.com/webpack/webpack-dev-middleware/commit/7df9e449945a852622135f3f0857599ad7b8af64)) ##### Bug Fixes - reduced package size by removing `mem` package ([#​1027](https://redirect.github.com/webpack/webpack-dev-middleware/issues/1027)) ([0d55268](https://redirect.github.com/webpack/webpack-dev-middleware/commit/0d55268478f9cbba122855e2be9d7493350d4d5d))

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 3 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 WARN config optional Use `--omit=optional` to exclude optional dependencies, or
npm WARN config `--include=optional` to include them.
npm WARN config 
npm WARN config     Default value does install optional deps unless otherwise omitted.
npm WARN ERESOLVE overriding peer dependency
npm WARN While resolving: ajv-keywords@3.5.2
npm WARN Found: ajv@8.6.3
npm WARN node_modules/ajv
npm WARN   dev ajv@"8.6.3" from the root project
npm WARN   1 more (table)
npm WARN 
npm WARN Could not resolve dependency:
npm WARN peer ajv@"^6.9.1" from ajv-keywords@3.5.2
npm WARN node_modules/ajv-keywords
npm WARN   ajv-keywords@"^3.5.2" from schema-utils@3.0.0
npm WARN   node_modules/copy-webpack-plugin/node_modules/schema-utils
npm WARN   3 more (schema-utils, schema-utils, schema-utils)
npm WARN 
npm WARN Conflicting peer dependency: ajv@6.12.6
npm WARN node_modules/ajv
npm WARN   peer ajv@"^6.9.1" from ajv-keywords@3.5.2
npm WARN   node_modules/ajv-keywords
npm WARN     ajv-keywords@"^3.5.2" from schema-utils@3.0.0
npm WARN     node_modules/copy-webpack-plugin/node_modules/schema-utils
npm WARN     3 more (schema-utils, schema-utils, schema-utils)
npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR! 
npm ERR! While resolving: jest-puppeteer@5.0.4
npm ERR! Found: puppeteer@13.1.2
npm ERR! node_modules/puppeteer
npm ERR!   dev puppeteer@"13.1.2" from the root project
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer puppeteer@">= 1.5.0 < 10" from jest-puppeteer@5.0.4
npm ERR! node_modules/jest-puppeteer
npm ERR!   dev jest-puppeteer@"5.0.4" from the root project
npm ERR! 
npm ERR! Conflicting peer dependency: puppeteer@9.1.1
npm ERR! node_modules/puppeteer
npm ERR!   peer puppeteer@">= 1.5.0 < 10" from jest-puppeteer@5.0.4
npm ERR!   node_modules/jest-puppeteer
npm ERR!     dev jest-puppeteer@"5.0.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! See /tmp/renovate/cache/others/npm/eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in:
npm ERR!     /tmp/renovate/cache/others/npm/_logs/2024-08-06T10_38_01_322Z-debug-0.log