From 39e5683c017e8d872f5ba393a71037b7c22e46fd Mon Sep 17 00:00:00 2001 From: tao Date: Tue, 25 Apr 2023 08:53:38 +0000 Subject: [PATCH] update pom.xml. commons-io:commons-io Directory Traversal In Apache Commons IO before 2.7, When invoking the method FileNameUtils.normalize with an improper input string, like "//../foo", or "\\..\foo", the result would be the same value, thus possibly providing access to files in the parent directory, but not further above (thus "limited" path traversal), if the calling code would use the result to construct a path value. Signed-off-by: tao --- pom.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/pom.xml b/pom.xml index 80df759..c5d14da 100644 --- a/pom.xml +++ b/pom.xml @@ -79,6 +79,7 @@ commons-io commons-io 2.4 + 2.7 -- Gitee