https://bz.apache.org/bugzilla/show_bug.cgi?id=63188
Dominik Stadler <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Version|3.17-FINAL |unspecified Status|NEW |NEEDINFO --- Comment #4 from Dominik Stadler <[email protected]> --- The file somehow triggers some security-related safeguards in the XML-Handling. If I run this with the latest version, the following is logged out if logging is turned on: java.io.IOException: Zip bomb detected! The file would exceed the max. ratio of compressed file size to the size of the expanded data. This may indicate that the file is used to inflate memory usage and thus could pose a security risk. You can adjust this limit via ZipSecureFile.setMinInflateRatio() if you need to work with files which exceed this limit. Uncompressed size: 819534, Raw/compressed size: 8192, ratio: 0.009996 Limits: MIN_INFLATE_RATIO: 0.010000, Entry: xl/pivotCache/pivotCacheRecords1.xml You can disable this check with the following, please try and report back here if it made it work. ZipSecureFile.setMinInflateRatio(0.0); BTW. There is a newer version 3.17 in the 3-series which contains many fixes on top of 3.15. Also the latest release is 4.0.1, if possible we suggest to upgrade to the latest version to get all new features/bugfixes and support for current technologies. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
