CVE-2017-16197: Directory Traversal in qinserve
N/A
CVSS Score
Basic Information
CVE ID
GHSA ID
EPSS Score
0.53864%
CWE
Published
9/1/2020
Updated
9/7/2023
KEV Status
No
Technology
JavaScript
Technical Details
CVSS Vector
-
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
qinserve | npm | >= 0.0.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper path resolution in the request handling logic. Though exact code isn't available, the advisory explicitly states the server resolves relative paths without validation. In Node.js static servers, this typically occurs in the core request handler that maps URLs to filesystem paths. The lack of normalization/sanitization before passing to path resolution functions (like path.join()) would directly enable traversal. The high confidence comes from the vulnerability pattern matching classic path traversal flaws in simple static servers.