CVE-2017-16193: Directory Traversal in mfrs
7.5
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.67306%
CWE
Published
9/1/2020
Updated
9/12/2023
KEV Status
No
Technology
JavaScript
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
mfrs | npm | >= 0.0.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability fundamentally stems from insecure path resolution logic in the static file serving component. While the exact code isn't available, the nature of directory traversal vulnerabilities in Node.js static servers strongly indicates that:
- The handler accepts raw URL paths
- Uses them in path resolution functions without normalization checks
- Fails to verify the resolved path remains within the web root This pattern matches the described attack vector where '/../../../../etc/passwd' is accepted as a valid path. The high confidence comes from the vulnerability's universal manifestation pattern in similar packages and the explicit PoC demonstration.