Goal Reached Thanks to every supporter — we hit 100%!

Goal: 1000 CNY · Raised: 1000 CNY

100.0%

CWE-23 (相对路径遍历) — Vulnerability Class 345

345 vulnerabilities classified as CWE-23 (相对路径遍历). AI Chinese analysis included.

CWE-23, Relative Path Traversal, is a critical input validation weakness where applications fail to properly sanitize user-supplied data before constructing file system paths. Attackers typically exploit this vulnerability by injecting directory traversal sequences, such as “../”, into input fields to manipulate the resulting pathname. This manipulation allows them to escape the intended restricted directory and access sensitive files located elsewhere on the server, potentially leading to unauthorized data disclosure or remote code execution. To mitigate this risk, developers must rigorously validate and neutralize all external inputs, ensuring they do not contain relative path components. Implementing strict allowlists for permitted characters, using canonicalization functions to resolve paths before access checks, and employing chroot jails or containerization to isolate file system access are essential defensive strategies that effectively prevent attackers from traversing outside the designated directory boundaries.

MITRE CWE Description
The product uses external input to construct a pathname that should be within a restricted directory, but it does not properly neutralize sequences such as ".." that can resolve to a location that is outside of that directory.
Common Consequences (4)
Integrity, Confidentiality, AvailabilityExecute Unauthorized Code or Commands
The attacker may be able to create or overwrite critical files that are used to execute code, such as programs or libraries.
IntegrityModify Files or Directories
The attacker may be able to overwrite or create critical files, such as programs, libraries, or important data. If the targeted file is used for a security mechanism, then the attacker may be able to bypass that mechanism. For example, appending a new account at the end of a password file may allow …
ConfidentialityRead Files or Directories
The attacker may be able read the contents of unexpected files and expose sensitive data by traversing the file system to access files or directories that are outside of the restricted directory. If the targeted file is used for a security mechanism, then the attacker may be able to bypass that mech…
AvailabilityDoS: Crash, Exit, or Restart
The attacker may be able to overwrite, delete, or corrupt unexpected critical files such as programs, libraries, or important data. This may prevent the product from working at all and in the case of a protection mechanisms such as authentication, it has the potential to lockout every user of the pr…
Mitigations (3)
ImplementationAssume all input is malicious. Use an "accept known good" input validation strategy, i.e., use a list of acceptable inputs that strictly conform to specifications. Reject any input that does not strictly conform to specifications, or transform it into something that does. When performing input validation, consider all potentially relevant properties, including length, type of input, the full range…
ImplementationInputs should be decoded and canonicalized to the application's current internal representation before being validated (CWE-180). Make sure that the application does not decode the same input twice (CWE-174). Such errors could be used to bypass allowlist validation schemes by introducing dangerous inputs after they have been checked. Use a built-in path canonicalization function (such as realpath(…
OperationUse an application firewall that can detect attacks against this weakness. It can be beneficial in cases in which the code cannot be fixed (because it is controlled by a third party), as an emergency prevention measure while more comprehensive software assurance measures are applied, or to provide defense in depth [REF-1481].
Effectiveness: Moderate
Examples (2)
The following URLs are vulnerable to this attack:
http://example.com/get-files.jsp?file=report.pdf http://example.com/get-page.php?home=aaa.html http://example.com/some-page.asp?page=index.html
Bad · Other
http://example.com/get-files?file=../../../../somedir/somefile http://example.com/../../../../etc/shadow http://example.com/get-files?file=../../../../etc/passwd
Attack · Other
The following code could be for a social networking application in which each user's profile information is stored in a separate file. All files are stored in a single directory.
my $dataPath = "/users/cwe/profiles"; my $username = param("user"); my $profilePath = $dataPath . "/" . $username; open(my $fh, "<", $profilePath) || ExitError("profile read error: $profilePath"); print "<ul>\n"; while (<$fh>) { print "<li>$_</li>\n"; } print "</ul>\n";
Bad · Perl
../../../etc/passwd
Attack
CVE IDTitleCVSSSeverityPublished
CVE-2025-23360 NVIDIA Nemo Framework 安全漏洞 — NeMo Framework 7.1 High2025-03-11
CVE-2025-26645 Remote Desktop Client Remote Code Execution Vulnerability — Remote Desktop client for Windows Desktop 8.8 High2025-03-11
CVE-2025-27610 Local File Inclusion in Rack::Static — rack 7.5 High2025-03-10
CVE-2025-23410 GMOD Apollo Relative Path Traversal — Apollo 9.8 Critical2025-03-04
CVE-2025-25130 WordPress Delete Comments By Status plugin <= 1.5.3 - Local File Inclusion vulnerability — Delete Comments By Status 7.5 High2025-03-03
CVE-2025-27410 PwnDoc Arbitrary File Write to RCE using Path Traversal in backup restore as admin — pwndoc 6.5 Medium2025-02-28
CVE-2024-56340 IBM Cognos Analytics path traversal — Cognos Analytics 6.5 Medium2025-02-28
CVE-2024-47051 Remote Code Execution & File Deletion in Asset Uploads — mautic/core 9.1 Critical2025-02-26
CVE-2025-20059 PingAM Java Policy Agent path traversal — PingAM Java Policy Agent 8.8 -2025-02-20
CVE-2025-0822 Bit Assist <= 1.5.2 - Path Traversal to Authenticated (Subscriber+) Arbitrary File Read via fileID Parameter — Chat Widget: Floating Customer Support Button for 30+ Channels, Supporting SMS, Calls, and Chat – Bit Assist 6.5 Medium2025-02-15
CVE-2024-13791 Bit Assist <= 1.5.2 - Path Traversal to Authenticated (Administrator+) Arbitrary File Read via downloadResponseFile Function — Chat Widget: Floating Customer Support Button for 30+ Channels, Supporting SMS, Calls, and Chat – Bit Assist 4.9 Medium2025-02-14
CVE-2025-26349 Q-Free MAXTIME Suite 安全漏洞 — MaxTime 7.2 High2025-02-12
CVE-2024-54462 Unsanitized Filenames in Flutter package image_picker_android Allow File Overwrites — image_picker_android 6.6 -2025-01-29
CVE-2024-54461 Unsanitized Filenames in Flutter package file_selector_android Allow File Overwrites — file_selector_android 6.6 -2025-01-29
CVE-2024-52012 Apache Solr: Configset upload on Windows allows arbitrary path write-access — Apache Solr 7.7 -2025-01-27
CVE-2025-23011 Fedora Repository archive extraction path traversal — Fedora Repository 8.8 High2025-01-23
CVE-2024-32115 Fortinet FortiManager 安全漏洞 — FortiManager 5.2 Medium2025-01-14
CVE-2024-46664 Fortinet FortiRecorder 安全漏洞 — FortiRecorder 5.2 Medium2025-01-14
CVE-2023-34990 Fortinet FortiWLM 代码注入漏洞 — FortiWLM 9.6 Critical2024-12-18
CVE-2024-49062 Microsoft SharePoint Information Disclosure Vulnerability — Microsoft SharePoint Enterprise Server 2016 6.5 Medium2024-12-10
CVE-2024-54154 JetBrains YouTrack 安全漏洞 — YouTrack 8.0 High2024-12-04
CVE-2024-11315 TRCore DVC - Arbitrary File Upload through Path Traversal — DVC 9.8 Critical2024-11-18
CVE-2024-11314 TRCore DVC - Arbitrary File Upload through Path Traversal — DVC 9.8 Critical2024-11-18
CVE-2024-11313 TRCore DVC - Arbitrary File Upload through Path Traversal — DVC 9.8 Critical2024-11-18
CVE-2024-11312 TRCore DVC - Arbitrary File Upload through Path Traversal — DVC 9.8 Critical2024-11-18
CVE-2024-11311 TRCore DVC - Arbitrary File Upload through Path Traversal — DVC 9.8 Critical2024-11-18
CVE-2024-11310 TRCore DVC - Arbitrary File Read through Path Traversal — DVC 7.5 High2024-11-18
CVE-2024-11309 TRCore DVC - Arbitrary File Read through Path Traversal — DVC 7.5 High2024-11-18
CVE-2024-35274 Fortinet FortiManager和FortiAnalyzer 安全漏洞 — FortiAnalyzer 2.2 Low2024-11-12
CVE-2024-32116 Fortinet FortiManager和FortiAnalyzer 安全漏洞 — FortiAnalyzer 4.8 Medium2024-11-12

Vulnerabilities classified as CWE-23 (相对路径遍历) represent 345 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.