(compressedSize < 0 || uncompressedSize < 0 || // 默认压缩比例是100倍,一旦发现压缩率超过这个阈值,被认为是Zip bomb compressedSize * maxSizeDiff < uncompressedSize) { throw new UtilException("Zip bomb attack detected, invalid sizes: compressed {}, uncompressed {}, name {}", compressedSiz...