新增zip文件解压大小限制,防止zip炸弹

This commit is contained in:
Looly 2022-07-29 22:04:54 +08:00
parent a8c6cf94cd
commit bf98387000
2 changed files with 18 additions and 19 deletions

View File

@ -30,6 +30,7 @@
* 【core 】 完善了codec包下一些方法的入参空校验pr#719@Gitee * 【core 】 完善了codec包下一些方法的入参空校验pr#719@Gitee
* 【extra 】 完善QrCodeUtil对于DATA_MATRIX生成的形状随机不可指定的功能pr#722@Gitee * 【extra 】 完善QrCodeUtil对于DATA_MATRIX生成的形状随机不可指定的功能pr#722@Gitee
* 【core 】 修改NetUtil.ipv6ToBigInteger原方法标记为过期pr#2485@Github * 【core 】 修改NetUtil.ipv6ToBigInteger原方法标记为过期pr#2485@Github
* 【core 】 ZipUtil新增zip文件解压大小限制防止zip炸弹pr#726@Gitee
* *
### 🐞Bug修复 ### 🐞Bug修复
* 【core 】 修复CollUtil里面关于可变参数传null造成的crash问题pr#2428@Github * 【core 】 修复CollUtil里面关于可变参数传null造成的crash问题pr#2428@Github

View File

@ -124,7 +124,7 @@ public class ZipUtil {
} }
} catch (FileAlreadyExistsException ignored) { } catch (FileAlreadyExistsException ignored) {
// 不覆盖情况下文件已存在, 跳过 // 不覆盖情况下文件已存在, 跳过
} catch (IOException e){ } catch (IOException e) {
throw new IORuntimeException(e); throw new IORuntimeException(e);
} }
} }
@ -262,6 +262,7 @@ public class ZipUtil {
*/ */
public static File zip(File zipFile, Charset charset, boolean withSrcDir, FileFilter filter, File... srcFiles) throws IORuntimeException { public static File zip(File zipFile, Charset charset, boolean withSrcDir, FileFilter filter, File... srcFiles) throws IORuntimeException {
validateFiles(zipFile, srcFiles); validateFiles(zipFile, srcFiles);
//noinspection resource
ZipWriter.of(zipFile, charset).add(withSrcDir, filter, srcFiles).close(); ZipWriter.of(zipFile, charset).add(withSrcDir, filter, srcFiles).close();
return zipFile; return zipFile;
} }
@ -432,6 +433,7 @@ public class ZipUtil {
* @since 5.5.2 * @since 5.5.2
*/ */
public static File zip(File zipFile, Charset charset, Resource... resources) throws UtilException { public static File zip(File zipFile, Charset charset, Resource... resources) throws UtilException {
//noinspection resource
ZipWriter.of(zipFile, charset).add(resources).close(); ZipWriter.of(zipFile, charset).add(resources).close();
return zipFile; return zipFile;
} }
@ -548,15 +550,7 @@ public class ZipUtil {
* @since 4.5.8 * @since 4.5.8
*/ */
public static File unzip(ZipFile zipFile, File outFile) throws IORuntimeException { public static File unzip(ZipFile zipFile, File outFile) throws IORuntimeException {
if (outFile.exists() && outFile.isFile()) { return unzip(zipFile, outFile, -1);
throw new IllegalArgumentException(
StrUtil.format("Target path [{}] exist!", outFile.getAbsolutePath()));
}
try (final ZipReader reader = new ZipReader(zipFile)) {
reader.readTo(outFile);
}
return outFile;
} }
/** /**
@ -564,23 +558,27 @@ public class ZipUtil {
* *
* @param zipFile zip文件附带编码信息使用完毕自动关闭 * @param zipFile zip文件附带编码信息使用完毕自动关闭
* @param outFile 解压到的目录 * @param outFile 解压到的目录
* @param size 警戒线大小(B) * @param limit 限制解压文件大小(单位B)
* @return 解压的目录 * @return 解压的目录
* @throws IORuntimeException IO异常 * @throws IORuntimeException IO异常
* @since 5.8.5 * @since 5.8.5
*/ */
public static File unzip(ZipFile zipFile, File outFile, long size) throws IORuntimeException { public static File unzip(ZipFile zipFile, File outFile, long limit) throws IORuntimeException {
if (outFile.exists() && outFile.isFile()) { if (outFile.exists() && outFile.isFile()) {
throw new IllegalArgumentException( throw new IllegalArgumentException(
StrUtil.format("Target path [{}] exist!", outFile.getAbsolutePath())); StrUtil.format("Target path [{}] exist!", outFile.getAbsolutePath()));
} }
Enumeration<? extends ZipEntry> zipEntries = zipFile.entries();
long zipFileSize = 0L; // pr#726@Gitee
while(zipEntries.hasMoreElements()) { if (limit > 0) {
ZipEntry zipEntry = zipEntries.nextElement(); final Enumeration<? extends ZipEntry> zipEntries = zipFile.entries();
zipFileSize += zipEntry.getSize(); long zipFileSize = 0L;
if (zipFileSize > size) { while (zipEntries.hasMoreElements()) {
throw new IllegalArgumentException("The file size exceeds the limit"); ZipEntry zipEntry = zipEntries.nextElement();
zipFileSize += zipEntry.getSize();
if (zipFileSize > limit) {
throw new IllegalArgumentException("The file size exceeds the limit");
}
} }
} }