CVE-2017-16134: Directory Traversal in http_static_simple
7.5
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.67323%
CWE
Published
7/23/2018
Updated
9/7/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 |
---|---|---|---|
http_static_simple | npm | <= 0.1.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper path handling in the request processing flow. While the exact code isn't available, the advisory indicates the server resolves relative paths without validation. In Node.js static servers, the primary request handler (typically named handleRequest or similar) would be responsible for mapping URL paths to filesystem paths. The high confidence comes from: 1) The vulnerability pattern matches unsafe path.join() operations with user input 2) The attack vector requires no authentication 3) The impact matches unvalidated path resolution behavior 4) This is a fundamental flaw in the core file serving functionality.