Mend.io Vulnerability Database
The largest open source vulnerability database
What is a Vulnerability ID?
New vulnerability? Tell us about it!
CVE-2026-76844
Published:August 24, 2026
Updated:September 08, 2026
webpack-dev-middleware resolves a request to a local file in getFilenameFromUrl by testing the request pathname against a traversal guard and then slicing it at a fixed character offset. The guard, UP_PATH_REGEXP applied to path.normalize("./${pathname}"), only matches ".." that stands as a whole path segment, while the containment test is the string comparison pathname.startsWith(publicPathPathname) and the file path is built as path.join(outputPath, pathname.slice(publicPathPathname.length)). When the configured publicPath has no trailing slash, a request such as GET /assets../.env against publicPath /assets yields the pathname /assets../.env, whose only dot-dot sits inside the segment "assets.." and so passes the guard, but the offset slice cuts within that segment and hands "../.env" to path.join, resolving one directory above outputPath. Reading a file from that path requires the middleware to be backed by the physical filesystem, which happens when writeToDisk is true or a custom outputFileSystem is supplied, since the default memfs volume holds only build output. Traversal depth is limited to a single directory because a separately delimited dot-dot segment is collapsed during URL parsing before the guard runs. The default publicPath value of "auto" resolves to "/" and is not affected. This is an incomplete fix for CVE-2024-29180: the guard and offset slice were introduced by that fix and are present in every release from 5.3.4, 6.1.2 and 7.1.0 onward.
Affected Packages
https://github.com/webpack/webpack-dev-middleware.git (GITHUB):
Affected version(s) >=v6.0.0 <v6.1.2
Fix Suggestion:
Update to version v6.1.2
https://github.com/webpack/webpack-dev-middleware.git (GITHUB):
Affected version(s) =v7.0.0 <v7.1.0
Fix Suggestion:
Update to version v7.1.0
https://github.com/webpack/webpack-dev-middleware.git (GITHUB):
Affected version(s) >=v1.1.0 <v5.3.4
Fix Suggestion:
Update to version v5.3.4
webpack-dev-middleware (NPM):
Affected version(s) =7.0.0 <7.1.0
Fix Suggestion:
Update to version 7.1.0
webpack-dev-middleware (NPM):
Affected version(s) >=0.5.0 <5.3.4
Fix Suggestion:
Update to version 5.3.4
webpack-dev-middleware (NPM):
Affected version(s) >=6.0.0 <6.1.2
Fix Suggestion:
Update to version 6.1.2
Do you need more information?
Contact Us
CVSS v4
Base Score:
8.3
Attack Vector
NETWORK
Attack Complexity
LOW
Attack Requirements
NONE
Privileges Required
NONE
User Interaction
PASSIVE
Vulnerable System Confidentiality
HIGH
Vulnerable System Integrity
NONE
Vulnerable System Availability
NONE
Subsequent System Confidentiality
HIGH
Subsequent System Integrity
NONE
Subsequent System Availability
NONE
CVSS v3
Base Score:
7.4
Attack Vector
NETWORK
Attack Complexity
LOW
Privileges Required
NONE
User Interaction
REQUIRED
Scope
CHANGED
Confidentiality
HIGH
Integrity
NONE
Availability
NONE
Weakness Type (CWE)
Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal')
EPSS
Base Score:
0.37