Browse Source

精简压缩包解析的无用代码
精简压缩包解析的无用代码

Signed-off-by: 高雄 <admin@cxcp.com>

高雄 2 years ago
parent
commit
888e550453
1 changed files with 4 additions and 1 deletions
  1. 4 1
      server/src/main/java/cn/keking/web/controller/FileController.java

+ 4 - 1
server/src/main/java/cn/keking/web/controller/FileController.java

@@ -165,7 +165,10 @@ public class FileController {
             fileUrl = WebUtils.decodeUrl(urls);
         } catch (Exception ex) {
             String errorMsg = String.format(BASE64_DECODE_ERROR_MSG, "url");
-            return errorMsg;
+            return ReturnResponse.failure(errorMsg);
+        }
+        if (KkFileUtils.isIllegalFileName(fileUrl)) {
+            return ReturnResponse.failure("不允许访问的路径:");
         }
         return RarUtils.getTree(fileUrl);
     }