tiny-zip
tiny-zip copied to clipboard
The missing Zip library for Java
If one zips a folder and the path of the zip file is in the folder you want to zip a corrupted zip file will be created in the intetional...
When using the constructor: ` ZipParameters zp = new ZipParameters(false, (percent, currentFile) -> { System.out.println(String.format("%f, done %s.", percent, currentFile)); });` and then calling ` TinyZip.zip(zipDestPath, zp, srcFilePath);` The resulting zip...
WARNING: This code has a security leak in it. ZIPs can contain relative paths. Specifically, you can craft them such that they contain `../../../../../../../etc/passwd` for example, as path. It can...