Objective-Zip
Objective-Zip copied to clipboard
An object-oriented friendly wrapper library for ZLib and MiniZip, in Objective-C for iOS and OS X
Partly solving https://github.com/gianlucabertani/Objective-Zip/issues/22 Uses +NSError variant for better Swift interop.
漏洞列表: 1.https://nvd.nist.gov/vuln/detail/CVE-2016-9841 2.https://nvd.nist.gov/vuln/detail/CVE-2016-9843 3.https://nvd.nist.gov/vuln/detail/CVE-2016-9840 4.https://nvd.nist.gov/vuln/detail/CVE-2016-9842 希望可以进行修复。
Hello, I get the following exception when creating an archive: Error Domain=ObjectiveZipErrorDomain Code=-1 "OZZipException" UserInfo={NSLocalizedDescription=OZZipException, NSLocalizedFailureReason=Error opening 'log.txt' in zipfile
Using the unzipItem method not all items in a large zip file are unzipped. Given a large zip file containing 94903 items the unzipItem method only unzips the first 29367...
Hi, I hit this error (+[NSDate fromDosDate:]: unrecognized selector sent to class 0x7fffa19110d0) when calling OZFileInZipInfo *info= [unzipFile getCurrentFileInZipInfo] any idea? thanks
`Error Domain=ObjectiveZipErrorDomain Code=-102 "OZZipException" UserInfo={NSLocalizedDescription=OZZipException, NSLocalizedFailureReason=Error opening 'log.sqlite3' in zipfile}` I am trying to zip a sqlite file. The first time it works fine but if try continously try few...
The unzip APIs are vulnerable to a Zip entry path manipulation (see: https://snyk.io/research/zip-slip-vulnerability) . The library fails to check that the extracted file is going to be created under the...
Hello, I'm unable to read the doc.kml file in the following zip file with 1.0.4 & 1.0.5, while it was working fine with 1.0.3: [http://ewalk.app/objectivezip-bug.kmz](url). By the way, is there...
// if (len > UINT16_MAX) // return UNZ_PARAMERROR; s->pfile_in_zip_read->stream.next_out = (Bytef*)buf; s->pfile_in_zip_read->stream.avail_out = (uInt)len; if (s->pfile_in_zip_read->raw) { if (len > s->pfile_in_zip_read->rest_read_compressed + s->pfile_in_zip_read->stream.avail_in) s->pfile_in_zip_read->stream.avail_out = (uInt)s->pfile_in_zip_read->rest_read_compressed + s->pfile_in_zip_read->stream.avail_in; } else...
I want to be able to extract a portion of a file in the zip archive. My specific use case is reading a video file from the zip, I only...