CVE-2017-16110:
Directory Traversal in weather.swlyons
7.5
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.67352%
CWE
Published
9/1/2020
Updated
9/11/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 |
---|---|---|---|
weather.swlyons | npm | >= 0.0.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from insecure handling of user-controlled input in the URL path. The server resolves the raw URL path (e.g., /../../../../etc/passwd
) without sanitizing traversal sequences (../
), enabling access to arbitrary files. This behavior is typically implemented in the core request-handling function of the server (e.g., in server.js
), where the URL path is directly used to construct filesystem paths. The lack of patch and the explicit example request further confirm this pattern.