Skip to content

Commit

Permalink
vuln-fix: Partial Path Traversal Vulnerability (#3080) (#3093)
Browse files Browse the repository at this point in the history
This fixes a partial path traversal vulnerability.

Replaces `dir.getCanonicalPath().startsWith(parent.getCanonicalPath())`, which is vulnerable to partial path traversal attacks, with the more secure `dir.getCanonicalFile().toPath().startsWith(parent.getCanonicalFile().toPath())`.

To demonstrate this vulnerability, consider `"/usr/outnot".startsWith("/usr/out")`.
The check is bypassed although `/outnot` is not under the `/out` directory.
It's important to understand that the terminating slash may be removed when using various `String` representations of the `File` object.
For example, on Linux, `println(new File("/var"))` will print `/var`, but `println(new File("/var", "/")` will print `/var/`;
however, `println(new File("/var", "/").getCanonicalPath())` will print `/var`.

Weakness: CWE-22: Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal')
Severity: Medium
CVSSS: 6.1
Detection: CodeQL & OpenRewrite (https://public.moderne.io/recipes/org.openrewrite.java.security.PartialPathTraversalVulnerability)

Reported-by: Jonathan Leitschuh <[email protected]>
Signed-off-by: Jonathan Leitschuh <[email protected]>

Bug-tracker: JLLeitschuh/security-research#13

Co-authored-by: Moderne <[email protected]>

Co-authored-by: Moderne <[email protected]>
(cherry picked from commit d2f415c)

Co-authored-by: Jonathan Leitschuh <[email protected]>
  • Loading branch information
AzuObs and JLLeitschuh committed Aug 2, 2022
1 parent 0f5b861 commit fe9f8c7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions core/src/main/java/apoc/log/Neo4jLogStream.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,7 @@ public Stream<FileEntry> stream(
File f = new File(logDir, logName);

try {
String canonicalPath = f.getCanonicalPath();
if (!canonicalPath.startsWith(logDir.getAbsolutePath())) {
if (!f.getCanonicalFile().toPath().startsWith(logDir.getAbsolutePath())) {
throw new RuntimeException("The path you are trying to access has a canonical path outside of the logs " +
"directory, and this procedure is only permitted to access files in the log directory. This may " +
"occur if the path in question is a symlink or other link.");
Expand Down

0 comments on commit fe9f8c7

Please sign in to comment.