Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

webpack-dev-server-3.11.3.tgz: 11 vulnerabilities (highest severity is: 9.1) #389

Closed
mend-for-github-com bot opened this issue Feb 21, 2023 · 8 comments · Fixed by #1473
Closed

webpack-dev-server-3.11.3.tgz: 11 vulnerabilities (highest severity is: 9.1) #389

mend-for-github-com bot opened this issue Feb 21, 2023 · 8 comments · Fixed by #1473
Labels
Mend: dependency security vulnerability Security vulnerability detected by Mend

Comments

@mend-for-github-com
Copy link
Contributor

mend-for-github-com bot commented Feb 21, 2023

Vulnerable Library - webpack-dev-server-3.11.3.tgz

Path to dependency file: /package.json

Path to vulnerable library: /package.json

Found in HEAD commit: bbca6f5de4b03c3c57a1333400bba2178b3aa99e

Vulnerabilities

CVE Severity CVSS Dependency Type Fixed in (webpack-dev-server version) Remediation Possible**
CVE-2024-29415 Critical 9.1 ip-1.1.9.tgz Transitive N/A*
CVE-2024-45590 High 7.5 body-parser-1.20.2.tgz Transitive N/A*
CVE-2024-45296 High 7.5 path-to-regexp-0.1.7.tgz Transitive N/A*
CVE-2024-37890 High 7.5 ws-6.2.2.tgz Transitive 4.0.0
CVE-2024-21536 High 7.5 http-proxy-middleware-0.19.1.tgz Transitive N/A*
CVE-2024-29180 High 7.4 webpack-dev-middleware-3.7.2.tgz Transitive 4.0.0
CVE-2024-52798 Medium 5.5 path-to-regexp-0.1.7.tgz Transitive N/A*
CVE-2024-47764 Medium 5.3 cookie-0.6.0.tgz Transitive N/A*
CVE-2024-43800 Medium 5.0 serve-static-1.15.0.tgz Transitive N/A*
CVE-2024-43799 Medium 5.0 send-0.18.0.tgz Transitive N/A*
CVE-2024-43796 Medium 5.0 express-4.19.2.tgz Transitive N/A*

*For some transitive vulnerabilities, there is no version of direct dependency with a fix. Check the "Details" section below to see if there is a version of transitive dependency where vulnerability is fixed.

**In some cases, Remediation PR cannot be created automatically for a vulnerability despite the availability of remediation

Details

CVE-2024-29415

Vulnerable Library - ip-1.1.9.tgz

Library home page: https://registry.npmjs.org/ip/-/ip-1.1.9.tgz

Path to dependency file: /package.json

Path to vulnerable library: /package.json

Dependency Hierarchy:

  • webpack-dev-server-3.11.3.tgz (Root Library)
    • ip-1.1.9.tgz (Vulnerable Library)

Found in HEAD commit: bbca6f5de4b03c3c57a1333400bba2178b3aa99e

Found in base branch: main

Vulnerability Details

The ip package through 2.0.1 for Node.js might allow SSRF because some IP addresses (such as 127.1, 01200034567, 012.1.2.3, 000:0:0000::01, and ::fFFf:127.0.0.1) are improperly categorized as globally routable via isPublic. NOTE: this issue exists because of an incomplete fix for CVE-2023-42282.

Publish Date: 2024-05-27

URL: CVE-2024-29415

CVSS 3 Score Details (9.1)

Base Score Metrics:

  • Exploitability Metrics:
    • Attack Vector: Network
    • Attack Complexity: Low
    • Privileges Required: None
    • User Interaction: None
    • Scope: Unchanged
  • Impact Metrics:
    • Confidentiality Impact: High
    • Integrity Impact: High
    • Availability Impact: None

For more information on CVSS3 Scores, click here.

CVE-2024-45590

Vulnerable Library - body-parser-1.20.2.tgz

Library home page: https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz

Path to dependency file: /package.json

Path to vulnerable library: /package.json

Dependency Hierarchy:

  • webpack-dev-server-3.11.3.tgz (Root Library)
    • express-4.19.2.tgz
      • body-parser-1.20.2.tgz (Vulnerable Library)

Found in HEAD commit: bbca6f5de4b03c3c57a1333400bba2178b3aa99e

Found in base branch: main

Vulnerability Details

body-parser is Node.js body parsing middleware. body-parser <1.20.3 is vulnerable to denial of service when url encoding is enabled. A malicious actor using a specially crafted payload could flood the server with a large number of requests, resulting in denial of service. This issue is patched in 1.20.3.

Publish Date: 2024-09-10

URL: CVE-2024-45590

CVSS 3 Score Details (7.5)

Base Score Metrics:

  • Exploitability Metrics:
    • Attack Vector: Network
    • Attack Complexity: Low
    • Privileges Required: None
    • User Interaction: None
    • Scope: Unchanged
  • Impact Metrics:
    • Confidentiality Impact: None
    • Integrity Impact: None
    • Availability Impact: High

For more information on CVSS3 Scores, click here.

Suggested Fix

Type: Upgrade version

Origin: GHSA-qwcr-r2fm-qrc7

Release Date: 2024-09-10

Fix Resolution: body-parser - 1.20.3

CVE-2024-45296

Vulnerable Library - path-to-regexp-0.1.7.tgz

Express style path to RegExp utility

Library home page: https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz

Path to dependency file: /package.json

Path to vulnerable library: /package.json

Dependency Hierarchy:

  • webpack-dev-server-3.11.3.tgz (Root Library)
    • express-4.19.2.tgz
      • path-to-regexp-0.1.7.tgz (Vulnerable Library)

Found in HEAD commit: bbca6f5de4b03c3c57a1333400bba2178b3aa99e

Found in base branch: main

Vulnerability Details

path-to-regexp turns path strings into a regular expressions. In certain cases, path-to-regexp will output a regular expression that can be exploited to cause poor performance. Because JavaScript is single threaded and regex matching runs on the main thread, poor performance will block the event loop and lead to a DoS. The bad regular expression is generated any time you have two parameters within a single segment, separated by something that is not a period (.). For users of 0.1, upgrade to 0.1.10. All other users should upgrade to 8.0.0.

Publish Date: 2024-09-09

URL: CVE-2024-45296

CVSS 3 Score Details (7.5)

Base Score Metrics:

  • Exploitability Metrics:
    • Attack Vector: Network
    • Attack Complexity: Low
    • Privileges Required: None
    • User Interaction: None
    • Scope: Unchanged
  • Impact Metrics:
    • Confidentiality Impact: None
    • Integrity Impact: None
    • Availability Impact: High

For more information on CVSS3 Scores, click here.

Suggested Fix

Type: Upgrade version

Origin: GHSA-9wv6-86v2-598j

Release Date: 2024-09-09

Fix Resolution: path-to-regexp - 0.1.10,8.0.0

CVE-2024-37890

Vulnerable Library - ws-6.2.2.tgz

Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js

Library home page: https://registry.npmjs.org/ws/-/ws-6.2.2.tgz

Path to dependency file: /package.json

Path to vulnerable library: /package.json

Dependency Hierarchy:

  • webpack-dev-server-3.11.3.tgz (Root Library)
    • ws-6.2.2.tgz (Vulnerable Library)

Found in HEAD commit: bbca6f5de4b03c3c57a1333400bba2178b3aa99e

Found in base branch: main

Vulnerability Details

ws is an open source WebSocket client and server for Node.js. A request with a number of headers exceeding theserver.maxHeadersCount threshold could be used to crash a ws server. The vulnerability was fixed in ws@8.17.1 (e55e510) and backported to ws@7.5.10 (22c2876), ws@6.2.3 (eeb76d3), and ws@5.2.4 (4abd8f6). In vulnerable versions of ws, the issue can be mitigated in the following ways: 1. Reduce the maximum allowed length of the request headers using the --max-http-header-size=size and/or the maxHeaderSize options so that no more headers than the server.maxHeadersCount limit can be sent. 2. Set server.maxHeadersCount to 0 so that no limit is applied.

Publish Date: 2024-06-17

URL: CVE-2024-37890

CVSS 3 Score Details (7.5)

Base Score Metrics:

  • Exploitability Metrics:
    • Attack Vector: Network
    • Attack Complexity: Low
    • Privileges Required: None
    • User Interaction: None
    • Scope: Unchanged
  • Impact Metrics:
    • Confidentiality Impact: None
    • Integrity Impact: None
    • Availability Impact: High

For more information on CVSS3 Scores, click here.

Suggested Fix

Type: Upgrade version

Origin: GHSA-3h5v-q93c-6h6q

Release Date: 2024-06-17

Fix Resolution (ws): 6.2.3

Direct dependency fix Resolution (webpack-dev-server): 4.0.0

⛑️ Automatic Remediation will be attempted for this issue.

CVE-2024-21536

Vulnerable Library - http-proxy-middleware-0.19.1.tgz

The one-liner node.js proxy middleware for connect, express and browser-sync

Library home page: https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz

Path to dependency file: /package.json

Path to vulnerable library: /package.json

Dependency Hierarchy:

  • webpack-dev-server-3.11.3.tgz (Root Library)
    • http-proxy-middleware-0.19.1.tgz (Vulnerable Library)

Found in HEAD commit: bbca6f5de4b03c3c57a1333400bba2178b3aa99e

Found in base branch: main

Vulnerability Details

Versions of the package http-proxy-middleware before 2.0.7, from 3.0.0 and before 3.0.3 are vulnerable to Denial of Service (DoS) due to an UnhandledPromiseRejection error thrown by micromatch. An attacker could kill the Node.js process and crash the server by making requests to certain paths.

Publish Date: 2024-10-19

URL: CVE-2024-21536

CVSS 3 Score Details (7.5)

Base Score Metrics:

  • Exploitability Metrics:
    • Attack Vector: Network
    • Attack Complexity: Low
    • Privileges Required: None
    • User Interaction: None
    • Scope: Unchanged
  • Impact Metrics:
    • Confidentiality Impact: None
    • Integrity Impact: None
    • Availability Impact: High

For more information on CVSS3 Scores, click here.

Suggested Fix

Type: Upgrade version

Origin: https://www.cve.org/CVERecord?id=CVE-2024-21536

Release Date: 2024-10-19

Fix Resolution: http-proxy-middleware - 2.0.7,3.0.3

CVE-2024-29180

Vulnerable Library - webpack-dev-middleware-3.7.2.tgz

A development middleware for webpack

Library home page: https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.2.tgz

Path to dependency file: /package.json

Path to vulnerable library: /package.json

Dependency Hierarchy:

  • webpack-dev-server-3.11.3.tgz (Root Library)
    • webpack-dev-middleware-3.7.2.tgz (Vulnerable Library)

Found in HEAD commit: bbca6f5de4b03c3c57a1333400bba2178b3aa99e

Found in base branch: main

Vulnerability Details

Prior to versions 7.1.0, 6.1.2, and 5.3.4, the webpack-dev-middleware development middleware for devpack 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. 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. 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. 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.

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. 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, 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. Starting with fixed versions 7.1.0, 6.1.2, and 5.3.4, the URL is unescaped and normalized before any further processing.

Publish Date: 2024-03-21

URL: CVE-2024-29180

CVSS 3 Score Details (7.4)

Base Score Metrics:

  • Exploitability Metrics:
    • Attack Vector: Network
    • Attack Complexity: Low
    • Privileges Required: None
    • User Interaction: Required
    • Scope: Changed
  • Impact Metrics:
    • Confidentiality Impact: High
    • Integrity Impact: None
    • Availability Impact: None

For more information on CVSS3 Scores, click here.

Suggested Fix

Type: Upgrade version

Origin: GHSA-wr3j-pwj9-hqq6

Release Date: 2024-03-21

Fix Resolution (webpack-dev-middleware): 5.3.4

Direct dependency fix Resolution (webpack-dev-server): 4.0.0

⛑️ Automatic Remediation will be attempted for this issue.

CVE-2024-52798

Vulnerable Library - path-to-regexp-0.1.7.tgz

Express style path to RegExp utility

Library home page: https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz

Path to dependency file: /package.json

Path to vulnerable library: /package.json

Dependency Hierarchy:

  • webpack-dev-server-3.11.3.tgz (Root Library)
    • express-4.19.2.tgz
      • path-to-regexp-0.1.7.tgz (Vulnerable Library)

Found in HEAD commit: bbca6f5de4b03c3c57a1333400bba2178b3aa99e

Found in base branch: main

Vulnerability Details

path-to-regexp turns path strings into a regular expressions. In certain cases, path-to-regexp will output a regular expression that can be exploited to cause poor performance. The regular expression that is vulnerable to backtracking can be generated in the 0.1.x release of path-to-regexp. Upgrade to 0.1.12. This vulnerability exists because of an incomplete fix for CVE-2024-45296.

Publish Date: 2024-12-05

URL: CVE-2024-52798

CVSS 3 Score Details (5.5)

Base Score Metrics:

  • Exploitability Metrics:
    • Attack Vector: Local
    • Attack Complexity: Low
    • Privileges Required: None
    • User Interaction: Required
    • Scope: Unchanged
  • Impact Metrics:
    • Confidentiality Impact: None
    • Integrity Impact: None
    • Availability Impact: High

For more information on CVSS3 Scores, click here.

Suggested Fix

Type: Upgrade version

Origin: GHSA-rhx6-c78j-4q9w

Release Date: 2024-12-05

Fix Resolution: path-to-regexp - 0.1.12

CVE-2024-47764

Vulnerable Library - cookie-0.6.0.tgz

Library home page: https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz

Path to dependency file: /package.json

Path to vulnerable library: /package.json

Dependency Hierarchy:

  • webpack-dev-server-3.11.3.tgz (Root Library)
    • express-4.19.2.tgz
      • cookie-0.6.0.tgz (Vulnerable Library)

Found in HEAD commit: bbca6f5de4b03c3c57a1333400bba2178b3aa99e

Found in base branch: main

Vulnerability Details

cookie is a basic HTTP cookie parser and serializer for HTTP servers. The cookie name could be used to set other fields of the cookie, resulting in an unexpected cookie value. A similar escape can be used for path and domain, which could be abused to alter other fields of the cookie. Upgrade to 0.7.0, which updates the validation for name, path, and domain.

Publish Date: 2024-10-04

URL: CVE-2024-47764

CVSS 3 Score Details (5.3)

Base Score Metrics:

  • Exploitability Metrics:
    • Attack Vector: Network
    • Attack Complexity: Low
    • Privileges Required: None
    • User Interaction: None
    • Scope: Unchanged
  • Impact Metrics:
    • Confidentiality Impact: None
    • Integrity Impact: Low
    • Availability Impact: None

For more information on CVSS3 Scores, click here.

Suggested Fix

Type: Upgrade version

Origin: GHSA-pxg6-pf52-xh8x

Release Date: 2024-10-04

Fix Resolution: cookie - 0.7.0

CVE-2024-43800

Vulnerable Library - serve-static-1.15.0.tgz

Serve static files

Library home page: https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz

Path to dependency file: /package.json

Path to vulnerable library: /package.json

Dependency Hierarchy:

  • webpack-dev-server-3.11.3.tgz (Root Library)
    • express-4.19.2.tgz
      • serve-static-1.15.0.tgz (Vulnerable Library)

Found in HEAD commit: bbca6f5de4b03c3c57a1333400bba2178b3aa99e

Found in base branch: main

Vulnerability Details

serve-static serves static files. serve-static passes untrusted user input - even after sanitizing it - to redirect() may execute untrusted code. This issue is patched in serve-static 1.16.0.

Publish Date: 2024-09-10

URL: CVE-2024-43800

CVSS 3 Score Details (5.0)

Base Score Metrics:

  • Exploitability Metrics:
    • Attack Vector: Network
    • Attack Complexity: High
    • Privileges Required: None
    • User Interaction: Required
    • Scope: Unchanged
  • Impact Metrics:
    • Confidentiality Impact: Low
    • Integrity Impact: Low
    • Availability Impact: Low

For more information on CVSS3 Scores, click here.

Suggested Fix

Type: Upgrade version

Origin: GHSA-cm22-4g7w-348p

Release Date: 2024-09-10

Fix Resolution: serve-static - 1.16.0,2.1.0

CVE-2024-43799

Vulnerable Library - send-0.18.0.tgz

Better streaming static file server with Range and conditional-GET support

Library home page: https://registry.npmjs.org/send/-/send-0.18.0.tgz

Path to dependency file: /package.json

Path to vulnerable library: /package.json

Dependency Hierarchy:

  • webpack-dev-server-3.11.3.tgz (Root Library)
    • express-4.19.2.tgz
      • send-0.18.0.tgz (Vulnerable Library)

Found in HEAD commit: bbca6f5de4b03c3c57a1333400bba2178b3aa99e

Found in base branch: main

Vulnerability Details

Send is a library for streaming files from the file system as a http response. Send passes untrusted user input to SendStream.redirect() which executes untrusted code. This issue is patched in send 0.19.0.

Publish Date: 2024-09-10

URL: CVE-2024-43799

CVSS 3 Score Details (5.0)

Base Score Metrics:

  • Exploitability Metrics:
    • Attack Vector: Network
    • Attack Complexity: High
    • Privileges Required: None
    • User Interaction: Required
    • Scope: Unchanged
  • Impact Metrics:
    • Confidentiality Impact: Low
    • Integrity Impact: Low
    • Availability Impact: Low

For more information on CVSS3 Scores, click here.

Suggested Fix

Type: Upgrade version

Origin: GHSA-m6fv-jmcg-4jfg

Release Date: 2024-09-10

Fix Resolution: send - 0.19.0

CVE-2024-43796

Vulnerable Library - express-4.19.2.tgz

Library home page: https://registry.npmjs.org/express/-/express-4.19.2.tgz

Path to dependency file: /package.json

Path to vulnerable library: /package.json

Dependency Hierarchy:

  • webpack-dev-server-3.11.3.tgz (Root Library)
    • express-4.19.2.tgz (Vulnerable Library)

Found in HEAD commit: bbca6f5de4b03c3c57a1333400bba2178b3aa99e

Found in base branch: main

Vulnerability Details

Express.js minimalist web framework for node. In express < 4.20.0, passing untrusted user input - even after sanitizing it - to response.redirect() may execute untrusted code. This issue is patched in express 4.20.0.

Publish Date: 2024-09-10

URL: CVE-2024-43796

CVSS 3 Score Details (5.0)

Base Score Metrics:

  • Exploitability Metrics:
    • Attack Vector: Network
    • Attack Complexity: High
    • Privileges Required: None
    • User Interaction: Required
    • Scope: Unchanged
  • Impact Metrics:
    • Confidentiality Impact: Low
    • Integrity Impact: Low
    • Availability Impact: Low

For more information on CVSS3 Scores, click here.

Suggested Fix

Type: Upgrade version

Origin: GHSA-qw6h-vgh9-j6wx

Release Date: 2024-09-10

Fix Resolution: express - 4.20.0,5.0.0


⛑️Automatic Remediation will be attempted for this issue.

@mend-for-github-com mend-for-github-com bot added the Mend: dependency security vulnerability Security vulnerability detected by Mend label Feb 21, 2023
@mend-for-github-com mend-for-github-com bot changed the title webpack-dev-server-3.11.3.tgz: 7 vulnerabilities (highest severity is: 9.8) webpack-dev-server-3.11.3.tgz: 7 vulnerabilities (highest severity is: 9.8) - autoclosed Feb 22, 2023
@mend-for-github-com
Copy link
Contributor Author

✔️ This issue was automatically closed by Mend because the vulnerable library in the specific branch(es) was either marked as ignored or it is no longer part of the Mend inventory.

@mend-for-github-com mend-for-github-com bot changed the title webpack-dev-server-3.11.3.tgz: 7 vulnerabilities (highest severity is: 9.8) - autoclosed webpack-dev-server-3.11.3.tgz: 7 vulnerabilities (highest severity is: 9.8) Feb 28, 2023
@mend-for-github-com mend-for-github-com bot reopened this Feb 28, 2023
@mend-for-github-com
Copy link
Contributor Author

ℹ️ This issue was automatically re-opened by Mend because the vulnerable library in the specific branch(es) has been detected in the Mend inventory.

@mend-for-github-com mend-for-github-com bot changed the title webpack-dev-server-3.11.3.tgz: 7 vulnerabilities (highest severity is: 9.8) webpack-dev-server-3.11.3.tgz: 7 vulnerabilities (highest severity is: 9.8) - autoclosed Feb 28, 2023
@mend-for-github-com
Copy link
Contributor Author

✔️ This issue was automatically closed by Mend because the vulnerable library in the specific branch(es) was either marked as ignored or it is no longer part of the Mend inventory.

@mend-for-github-com mend-for-github-com bot changed the title webpack-dev-server-3.11.3.tgz: 7 vulnerabilities (highest severity is: 9.8) - autoclosed webpack-dev-server-3.11.3.tgz: 1 vulnerabilities (highest severity is: 7.3) Jan 11, 2024
@mend-for-github-com mend-for-github-com bot reopened this Jan 11, 2024
Copy link
Contributor Author

ℹ️ This issue was automatically re-opened by Mend because the vulnerable library in the specific branch(es) has been detected in the Mend inventory.

@mend-for-github-com mend-for-github-com bot changed the title webpack-dev-server-3.11.3.tgz: 1 vulnerabilities (highest severity is: 7.3) webpack-dev-server-3.11.3.tgz: 1 vulnerabilities (highest severity is: 6.1) Feb 2, 2024
@mend-for-github-com mend-for-github-com bot changed the title webpack-dev-server-3.11.3.tgz: 1 vulnerabilities (highest severity is: 6.1) webpack-dev-server-3.11.3.tgz: 1 vulnerabilities (highest severity is: 6.1) - autoclosed Feb 2, 2024
Copy link
Contributor Author

✔️ This issue was automatically closed by Mend because the vulnerable library in the specific branch(es) was either marked as ignored or it is no longer part of the Mend inventory.

@mend-for-github-com mend-for-github-com bot changed the title webpack-dev-server-3.11.3.tgz: 1 vulnerabilities (highest severity is: 6.1) - autoclosed webpack-dev-server-3.11.3.tgz: 1 vulnerabilities (highest severity is: 6.5) Apr 19, 2024
@mend-for-github-com mend-for-github-com bot reopened this Apr 19, 2024
Copy link
Contributor Author

ℹ️ This issue was automatically re-opened by Mend because the vulnerable library in the specific branch(es) has been detected in the Mend inventory.

@mend-for-github-com mend-for-github-com bot changed the title webpack-dev-server-3.11.3.tgz: 1 vulnerabilities (highest severity is: 6.5) webpack-dev-server-3.11.3.tgz: 4 vulnerabilities (highest severity is: 9.8) May 1, 2024
@mend-for-github-com mend-for-github-com bot changed the title webpack-dev-server-3.11.3.tgz: 4 vulnerabilities (highest severity is: 9.8) webpack-dev-server-3.11.3.tgz: 3 vulnerabilities (highest severity is: 7.4) May 1, 2024
@mend-for-github-com mend-for-github-com bot changed the title webpack-dev-server-3.11.3.tgz: 3 vulnerabilities (highest severity is: 7.4) webpack-dev-server-3.11.3.tgz: 2 vulnerabilities (highest severity is: 7.4) May 1, 2024
@mend-for-github-com mend-for-github-com bot changed the title webpack-dev-server-3.11.3.tgz: 2 vulnerabilities (highest severity is: 7.4) webpack-dev-server-3.11.3.tgz: 1 vulnerabilities (highest severity is: 7.4) May 1, 2024
@mend-for-github-com mend-for-github-com bot changed the title webpack-dev-server-3.11.3.tgz: 1 vulnerabilities (highest severity is: 7.4) webpack-dev-server-3.11.3.tgz: 2 vulnerabilities (highest severity is: 9.1) Jun 3, 2024
@dblock dblock removed the untriaged label Jun 6, 2024
@dblock
Copy link
Member

dblock commented Jun 6, 2024

[Triage -- attendees 1, 2, 3, 4, 5, 6, 7]

@dblock
Copy link
Member

dblock commented Jun 6, 2024

@AMoo-Miki This looks like a high/critical security vuln, care to take a look?

@mend-for-github-com mend-for-github-com bot changed the title webpack-dev-server-3.11.3.tgz: 2 vulnerabilities (highest severity is: 9.1) webpack-dev-server-3.11.3.tgz: 4 vulnerabilities (highest severity is: 9.1) Jul 12, 2024
@mend-for-github-com mend-for-github-com bot changed the title webpack-dev-server-3.11.3.tgz: 4 vulnerabilities (highest severity is: 9.1) webpack-dev-server-3.11.3.tgz: 3 vulnerabilities (highest severity is: 9.1) Aug 16, 2024
@mend-for-github-com mend-for-github-com bot changed the title webpack-dev-server-3.11.3.tgz: 3 vulnerabilities (highest severity is: 9.1) webpack-dev-server-3.11.3.tgz: 8 vulnerabilities (highest severity is: 9.1) Sep 18, 2024
@mend-for-github-com mend-for-github-com bot changed the title webpack-dev-server-3.11.3.tgz: 8 vulnerabilities (highest severity is: 9.1) webpack-dev-server-3.11.3.tgz: 9 vulnerabilities (highest severity is: 9.1) Oct 17, 2024
@mend-for-github-com mend-for-github-com bot changed the title webpack-dev-server-3.11.3.tgz: 9 vulnerabilities (highest severity is: 9.1) webpack-dev-server-3.11.3.tgz: 10 vulnerabilities (highest severity is: 9.1) Oct 31, 2024
@mend-for-github-com mend-for-github-com bot changed the title webpack-dev-server-3.11.3.tgz: 10 vulnerabilities (highest severity is: 9.1) webpack-dev-server-3.11.3.tgz: 11 vulnerabilities (highest severity is: 9.1) Dec 6, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Mend: dependency security vulnerability Security vulnerability detected by Mend
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant