Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Avoid the use of a reserved macro name in contrib/minizip/ioapi.h. | Mark Adler | 2024-09-01 | 1 | -2/+2 |
| | |||||
* | Add header file dependencies to contrib/minizip/Makefile. | Mark Adler | 2024-07-31 | 1 | -3/+11 |
| | |||||
* | Avoid use of stdint.h in contrib/minizip. | Mark Adler | 2024-07-31 | 5 | -51/+90 |
| | |||||
* | Remedy conflict between libzip and minizip zip.h. | Mark Adler | 2024-06-04 | 1 | -1/+1 |
| | | | | | | | | | | | | minizip.pc.in would add @include@/minizip to the include path, which would permit simply #include <zip.h> to use minizip. However that conflicts with the zip.h from libzip that is put in the root include directory. This now does not add /minizip to the include path. Now when using pkg-config, #include <minizip/zip.h> must be used, where #include <zip.h> would be used for libzip. This is an incompatible change with the previous state. Users of minizip and pkg-config will need to update their code. #include <unzip.h> will need to be updated to #include <minizip/unzip.h> as well. | ||||
* | Replace autotools macro AC_HELP_STRING with AS_HELP_STRING. | Matthieu Longo | 2024-04-29 | 1 | -1/+1 |
| | | | | In minizip's configure.ac. AC_HELP_STRING is obsolete. | ||||
* | Avert minizip warnings for MSVC. | Mark Adler | 2024-03-29 | 5 | -37/+56 |
| | |||||
* | Avoid conversion warning on 32-bit architectures in minizip. | Mark Adler | 2024-03-22 | 1 | -1/+1 |
| | |||||
* | Improve detection of UNIX-style systems in minizip. | Alexander Miller | 2024-03-16 | 4 | -11/+5 |
| | | | | | | | | | | | Not all toolchains on UNIX-style operating systems predefine "unix". For example, it's missing on NetBSD, OpenBSD/gcc, AIX, HP-UX. There is no single macro defined everywhere, but checking both "__unix__" and "__unix" should cover everything except macOS, which is already checked for using "__APPLE__". Note that case sensitivity should default to off on macOS and cygwin, so the check there is different. | ||||
* | Avoid signed shift in minizip zip.c. | Mark Adler | 2024-03-12 | 1 | -1/+1 |
| | |||||
* | Improve random number seeding in skipset.h. | Mark Adler | 2024-03-10 | 1 | -1/+2 |
| | |||||
* | Add zipAlreadyThere() to minizip zip.c to help avoid duplicates. | Mark Adler | 2024-03-10 | 3 | -10/+612 |
| | |||||
* | Permit changing minizip Makefile optimization with CFLAGS. | Mark Adler | 2024-03-09 | 1 | -1/+1 |
| | |||||
* | Note termination of returned strings in contrib/minizip/unzip.h. | Mark Adler | 2024-01-23 | 1 | -0/+4 |
| | |||||
* | Avoid unterminated file name in contrib/minizip/miniunz.c. | Mark Adler | 2024-01-23 | 1 | -2/+2 |
| | |||||
* | Permit compiling contrib/minizip/unzip.c with decryption. | Mark Adler | 2024-01-23 | 2 | -5/+0 |
| | |||||
* | Change version number on develop branch to 1.3.1.1. | Mark Adler | 2024-01-22 | 1 | -1/+1 |
| | |||||
* | zlib 1.3.1v1.3.1master | Mark Adler | 2024-01-22 | 1 | -1/+1 |
| | |||||
* | Use Makefile compiler for minizip-test target. | Mark Adler | 2024-01-21 | 1 | -1/+1 |
| | |||||
* | Correct typos in source code. | Dimitri Papadopoulos | 2024-01-17 | 1 | -1/+1 |
| | |||||
* | Neutralize zip file traversal attacks in miniunz. | Matt Wilson | 2024-01-17 | 1 | -0/+14 |
| | | | | | | | | | | | | | | | | | | | | | | | | Archive formats such as .zip files are generally susceptible to so-called "traversal attacks". This allows an attacker to craft an archive that writes to unexpected locations of the file system (e.g., /etc/shadow) if an unspecting root user were to unpack a malicious archive. This patch neutralizes absolute paths such as /tmp/moo and deeply relative paths such as dummy/../../../../../../../../../../tmp/moo The Debian project requested CVE-2014-9485 be allocated for the first identified weakness. The fix was incomplete, resulting in a revised patch applied here. Since there wasn't an updated version released by Debian with the incomplete fix, I suggest we use this CVE to identify both issues. Link: https://security.snyk.io/research/zip-slip-vulnerability Link: https://bugs.debian.org/774321 Link: https://bugs.debian.org/776831 Link: https://nvd.nist.gov/vuln/detail/CVE-2014-9485 Reported-by: Jakub Wilk <jwilk@debian.org> Fixed-by: Michael Gilbert <mgilbert@debian.org> | ||||
* | Fix random typos over several source and text files. | THE-Spellchecker | 2024-01-17 | 3 | -5/+5 |
| | |||||
* | Correct case of MSDOS in contrib/minizip/miniunz.c. | William Leara | 2024-01-17 | 1 | -1/+1 |
| | |||||
* | Refer to correct function in contrib/minizip/unzip.c comment. | William Leara | 2024-01-17 | 1 | -1/+1 |
| | |||||
* | Correct repeated words in source file comments and a readme. | Paul Ivanov | 2023-11-14 | 3 | -5/+5 |
| | |||||
* | Fix decision on the emission of Zip64 end records in minizip. | Mark Adler | 2023-11-07 | 1 | -1/+1 |
| | | | | | | | | | | The appnote says that if the number of entries in the end record is 0xffff, then the actual number of entries will be found in the Zip64 end record. Therefore if the number of entries is equal to 0xffff, it can't be in the end record by itself, since that is an instruction to get the number from the Zip64 end record. This code would just store 0xffff in the end record in that case, not making a Zip64 end record. This commit fixes that. | ||||
* | Update miniunz version. | tbeu | 2023-08-20 | 1 | -1/+1 |
| | |||||
* | Reject overflows of zip header fields in minizip. | Hans Wennborg | 2023-08-19 | 1 | -0/+11 |
| | | | | | | | | This checks the lengths of the file name, extra field, and comment that would be put in the zip headers, and rejects them if they are too long. They are each limited to 65535 bytes in length by the zip format. This also avoids possible buffer overflows if the provided fields are too long. | ||||
* | Change version number on develop branch to 1.3.0.1. | Mark Adler | 2023-08-18 | 1 | -1/+1 |
| | |||||
* | zlib 1.3v1.3 | Mark Adler | 2023-08-18 | 1 | -1/+1 |
| | |||||
* | Avoid uninitialized and unused warnings in contrib/minizip. | Mark Adler | 2023-08-17 | 2 | -2/+8 |
| | |||||
* | Remove redundant includes in minizip. | Mark Adler | 2023-08-13 | 2 | -4/+0 |
| | |||||
* | Remove TRYFREE macro from minizip. | Mark Adler | 2023-08-13 | 2 | -25/+19 |
| | |||||
* | Read multiple bytes instead of byte-by-byte in minizip unzip.c. | Eugene Golushkov | 2023-08-03 | 1 | -96/+38 |
| | | | | | Use a single ZREAD64 call in the unz64local_getShort/Long/Long64 implementation, rather than read it byte by byte. | ||||
* | Support Haiku in minizip. | Gilles Vollant | 2023-08-03 | 4 | -4/+4 |
| | |||||
* | Correct dummy filetime() prototype in minizip.c. | Xiang Xiao | 2023-08-03 | 1 | -1/+1 |
| | | | | Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com> | ||||
* | Match sign of printf directive to sign of argument in minizip. | Mark Adler | 2023-07-29 | 1 | -1/+1 |
| | |||||
* | Fix logic error in minizip argument processing. | Mark Adler | 2023-07-29 | 1 | -1/+1 |
| | |||||
* | Fix typos found by codespell in minizip | Dimitri Papadopoulos | 2023-07-29 | 8 | -36/+36 |
| | |||||
* | Fix reading disk number start on zip64 files in minizip. | Mark Adler | 2023-07-29 | 1 | -4/+2 |
| | |||||
* | Remove duplicated code #806 | Gilles Vollant | 2023-07-29 | 1 | -1/+0 |
| | |||||
* | minizip: Fix being unable to open empty zip file | RedworkDE | 2023-07-29 | 1 | -22/+26 |
| | |||||
* | Fix cast in minizip's ioapi.c for Windows. | Mark Adler | 2023-04-17 | 1 | -1/+1 |
| | |||||
* | Remove K&R function definitions from contrib/minizip. | Mark Adler | 2023-04-15 | 12 | -759/+514 |
| | |||||
* | Change version number on develop branch to 1.2.13.1. | Mark Adler | 2022-10-15 | 1 | -1/+1 |
| | |||||
* | zlib 1.2.13v1.2.13 | Mark Adler | 2022-10-12 | 1 | -1/+1 |
| | |||||
* | Find other BSD's without *64 functions in contrib/minizip/ioapi.h. | Mark Adler | 2022-10-10 | 1 | -1/+1 |
| | |||||
* | Avoid C89 warning in contrib/minizip/crypt.h. | Mark Adler | 2022-10-10 | 1 | -1/+1 |
| | |||||
* | Comment out unused code in contrib/minizip/minizip.c. | Mark Adler | 2022-10-09 | 1 | -2/+2 |
| | |||||
* | Remove some harmless semicolons in minizip. | Mark Adler | 2022-10-06 | 2 | -2/+2 |
| | |||||
* | Security and warning fixes for minizip. [gvollant] | Mark Adler | 2022-10-06 | 2 | -7/+4 |
| | | | | Remove unused code and unnecessary test for free(). |