7e0a4d
7e0a4d
# Settings for EL <= 7
7e0a4d
%if 0%{?rhel} && 0%{?rhel} <= 7
7e0a4d
%{!?__global_ldflags: %global __global_ldflags -Wl,-z,relro}
7e0a4d
%endif
7e0a4d
7e0a4d
Summary: A utility for unpacking zip files
7e0a4d
Name: unzip
7e0a4d
Version: 6.0
9b72a6
Release: 46%{?dist}
7e0a4d
License: BSD
7e0a4d
Group: Applications/Archiving
7e0a4d
Source: http://downloads.sourceforge.net/infozip/unzip60.tar.gz
7e0a4d
7e0a4d
# Not sent to upstream.
7e0a4d
Patch1: unzip-6.0-bzip2-configure.patch
7e0a4d
# Upstream plans to do this in zip (hopefully also in unzip).
7e0a4d
Patch2: unzip-6.0-exec-shield.patch
7e0a4d
# Upstream plans to do similar thing.
7e0a4d
Patch3: unzip-6.0-close.patch
7e0a4d
# Details in rhbz#532380.
7e0a4d
# Reported to upstream: http://www.info-zip.org/board/board.pl?m-1259575993/
7e0a4d
Patch4: unzip-6.0-attribs-overflow.patch
7e0a4d
# Not sent to upstream, as it's Fedora/RHEL specific.
7e0a4d
# Modify the configure script to accept var LFLAGS2 so linking can be configurable
7e0a4d
# from the spec file. In addition '-s' is still removed as before
7e0a4d
Patch5: unzip-6.0-configure.patch
7e0a4d
Patch6: unzip-6.0-manpage-fix.patch
7e0a4d
# Update match.c with recmatch() from zip 3.0's util.c
7e0a4d
# This also resolves the license issue in that old function.
7e0a4d
# Original came from here: https://projects.parabolagnulinux.org/abslibre.git/plain/libre/unzip-libre/match.patch
7e0a4d
Patch7: unzip-6.0-fix-recmatch.patch
7e0a4d
# Update process.c
7e0a4d
Patch8: unzip-6.0-symlink.patch
7e0a4d
# change using of macro "case_map" by "to_up"
7e0a4d
Patch9: unzip-6.0-caseinsensitive.patch
7e0a4d
# downstream fix for "-Werror=format-security"
7e0a4d
# upstream doesn't want hear about this option again
7e0a4d
Patch10: unzip-6.0-format-secure.patch
7e0a4d
7e0a4d
Patch11: unzip-6.0-valgrind.patch
7e0a4d
Patch12: unzip-6.0-x-option.patch
7e0a4d
Patch13: unzip-6.0-overflow.patch
7e0a4d
Patch14: unzip-6.0-cve-2014-8139.patch
7e0a4d
Patch15: unzip-6.0-cve-2014-8140.patch
7e0a4d
Patch16: unzip-6.0-cve-2014-8141.patch
7e0a4d
Patch17: unzip-6.0-overflow-long-fsize.patch
7e0a4d
7e0a4d
# Fix heap overflow and infinite loop when invalid input is given (#1260947)
7e0a4d
Patch18: unzip-6.0-heap-overflow-infloop.patch
7e0a4d
7e0a4d
# support non-{latin,unicode} encoding
7e0a4d
Patch19: unzip-6.0-alt-iconv-utf8.patch
7e0a4d
Patch20: unzip-6.0-alt-iconv-utf8-print.patch
7e0a4d
Patch21: 0001-Fix-CVE-2016-9844-rhbz-1404283.patch
7e0a4d
7e0a4d
# restore unix timestamp accurately
7e0a4d
Patch22: unzip-6.0-timestamp.patch
7e0a4d
7e0a4d
# fix possible heap based stack overflow in passwd protected files
7e0a4d
Patch23: unzip-6.0-cve-2018-1000035-heap-based-overflow.patch
7e0a4d
Patch24: unzip-6.0-cve-2018-18384.patch
7e0a4d
Patch25: unzip-6.0-COVSCAN-fix-unterminated-string.patch
7e0a4d
7e0a4d
7e0a4d
Patch26: unzip-6.0-COVSCAN-strcpy-with-overlapping-strings.patch
7e0a4d
2f5a67
#zipbomb related patches (CVE-2019-13232)
2f5a67
Patch27: unzip-zipbomb-part1.patch
2f5a67
Patch28: unzip-zipbomb-part2.patch
2f5a67
Patch29: unzip-zipbomb-part3.patch
2f5a67
Patch30: unzip-zipbomb-manpage.patch
2f5a67
a0bbf4
Patch31: unzip-zipbomb-part4.patch
a0bbf4
Patch32: unzip-zipbomb-part5.patch
6e8162
Patch33: unzip-zipbomb-part6.patch
9b72a6
9b72a6
Patch34: unzip-zipbomb-switch.patch
7e0a4d
URL: http://www.info-zip.org/UnZip.html
7e0a4d
BuildRequires:  bzip2-devel
7e0a4d
7e0a4d
%description
7e0a4d
The unzip utility is used to list, test, or extract files from a zip
7e0a4d
archive.  Zip archives are commonly found on MS-DOS systems.  The zip
7e0a4d
utility, included in the zip package, creates zip archives.  Zip and
7e0a4d
unzip are both compatible with archives created by PKWARE(R)'s PKZIP
7e0a4d
for MS-DOS, but the programs' options and default behaviors do differ
7e0a4d
in some respects.
7e0a4d
7e0a4d
Install the unzip package if you need to list, test or extract files from
7e0a4d
a zip archive.
7e0a4d
7e0a4d
%prep
7e0a4d
%setup -q -n unzip60
7e0a4d
%patch1 -p1 -b .bzip2-configure
7e0a4d
%patch2 -p1 -b .exec-shield
7e0a4d
%patch3 -p1 -b .close
7e0a4d
%patch4 -p1 -b .attribs-overflow
7e0a4d
%patch5 -p1 -b .configure
7e0a4d
%patch6 -p1 -b .manpage-fix
7e0a4d
%patch7 -p1 -b .recmatch
7e0a4d
%patch8 -p1 -b .symlink
7e0a4d
%patch9 -p1 -b .caseinsensitive
7e0a4d
%patch10 -p1 -b .format-secure
7e0a4d
%patch11 -p1 -b .valgrind
7e0a4d
%patch12 -p1 -b .x-option
7e0a4d
%patch13 -p1 -b .overflow
7e0a4d
%patch14 -p1 -b .cve-2014-8139
7e0a4d
%patch15 -p1 -b .cve-2014-8140
7e0a4d
%patch16 -p1 -b .cve-2014-8141
7e0a4d
%patch17 -p1 -b .overflow-long-fsize
7e0a4d
%patch18 -p1 -b .heap-overflow-infloop
7e0a4d
%patch19 -p1 -b .utf
7e0a4d
%patch20 -p1 -b .utf-print
7e0a4d
%patch21 -p1 -b .cve-2016-9844
7e0a4d
%patch22 -p1 -b .timestamp
7e0a4d
%patch23 -p1 -b .cve-2018-1000035
7e0a4d
%patch24 -p1 -b .cve-2018-18384
7e0a4d
7e0a4d
%patch25 -p1 -b .covscan1 
7e0a4d
%patch26 -p1 -b .covscan2
7e0a4d
2f5a67
%patch27 -p1 -b .zipbomb1
2f5a67
%patch28 -p1 -b .zipbomb2
2f5a67
%patch29 -p1 -b .zipbomb3
2f5a67
%patch30 -p1
2f5a67
a0bbf4
%patch31 -p1
a0bbf4
%patch32 -p1
6e8162
%patch33 -p1
9b72a6
%patch34 -p1
a0bbf4
7e0a4d
%build
7e0a4d
# IZ_HAVE_UXUIDGID is needed for right functionality of unzip -X
7e0a4d
# NOMEMCPY solve problem with memory overlapping - decomression is slowly,
7e0a4d
# but successfull.
7e0a4d
make -f unix/Makefile CF_NOOPT="-I. -DUNIX $RPM_OPT_FLAGS -DNOMEMCPY -DIZ_HAVE_UXUIDGID -DNO_LCHMOD" \
7e0a4d
                      LFLAGS2="%{?__global_ldflags}" generic_gcc %{?_smp_mflags}
7e0a4d
7e0a4d
%install
7e0a4d
rm -rf $RPM_BUILD_ROOT
7e0a4d
make -f unix/Makefile prefix=$RPM_BUILD_ROOT%{_prefix} MANDIR=$RPM_BUILD_ROOT/%{_mandir}/man1 INSTALL="cp -p" install
7e0a4d
7e0a4d
%files
7e0a4d
%defattr(-,root,root)
7e0a4d
%license LICENSE COPYING.OLD
7e0a4d
%doc README BUGS
7e0a4d
%{_bindir}/*
7e0a4d
%{_mandir}/*/*
7e0a4d
7e0a4d
%changelog
9b72a6
* Thu Dec 16 2021 Jakub Martisko <jamartis@redhat.com> - 6.0-46
9b72a6
- Add environment variable that disables the zipbomb detection
9b72a6
- Resolves: rhbz#2020320
9b72a6
6e8162
* Tue Nov 24 2020 Jakub Martisko <jamartis@redhat.com> - 6.0-45
6e8162
Fix a false positive zipbomb detection
6e8162
Related: 1954649
6e8162
Related: 1953565
6e8162
a0bbf4
* Tue Nov 24 2020 Jakub Martisko <jamartis@redhat.com> - 6.0-44
a0bbf4
* Fix out of memory errors while checking for zip-bombs
a0bbf4
Resolves: #1900915
a0bbf4
2f5a67
* Mon Nov 18 2019 Jakub Martisko <jamartis@redhat.com> - 6.0-43
2f5a67
- Update the man page with the new exit code introduced in 6.0-42
2f5a67
- Related: CVE-2019-13232
2f5a67
2f5a67
* Thu Oct 17 2019 Jakub Martisko <jamartis@redhat.com> - 6.0-42
2f5a67
- Fix CVE-2019-13232
2f5a67
- Resolves: CVE-2019-13232
2f5a67
7e0a4d
* Wed Nov 14 2018 Jakub Martisko <jamartis@redhat.com> - 6.0-41
7e0a4d
- Fix strcpy call with possibly overlapping src/dest strings.
7e0a4d
- Related: #1602721
7e0a4d
7e0a4d
* Mon Nov 12 2018 Jakub Martisko <jamartis@redhat.com> - 6.0-40
7e0a4d
- fix several possibly unterminated strings
7e0a4d
  When copying to OEM_CP and ISO_CP strings, the string could end unterminated
7e0a4d
  (stncpy does not append '\0').
7e0a4d
- Related: #1602721
7e0a4d
7e0a4d
* Mon Nov 05 2018 Jakub Martisko <jamartis@redhat.com> - 6.0-39
7e0a4d
- Fix CVE-2018-18384
7e0a4d
  Resolves: CVE-2018-18384
7e0a4d
7e0a4d
* Tue Feb 13 2018 Jakub Martisko <jamartis@redhat.com> - 6.0-38
7e0a4d
- Fix CVE-2018-1000035 - heap based buffer overflow when opening
7e0a4d
  password protected files.
7e0a4d
  Resolves: 1537043 
7e0a4d
7e0a4d
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.0-37
7e0a4d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
7e0a4d
7e0a4d
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 6.0-36
7e0a4d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
7e0a4d
7e0a4d
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 6.0-35
7e0a4d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
7e0a4d
7e0a4d
* Fri Jul 14 2017 Petr Stodulka <pstodulk@redhat.com> - 6.0.34
7e0a4d
- restore of unix timestamp accurately
7e0a4d
  Resolves: #1451953
7e0a4d
7e0a4d
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 6.0-33
7e0a4d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
7e0a4d
7e0a4d
* Wed Feb 01 2017 Stephen Gallagher <sgallagh@redhat.com> - 6.0-32
7e0a4d
- Add missing %%license macro
7e0a4d
7e0a4d
* Wed Dec 14 2016 Petr Stodulka <pstodulk@redhat.com> - 6.0-31
7e0a4d
- Fix CVE-2016-9844 - buffer overflow in zipinfo
7e0a4d
  Resolves: #1404283
7e0a4d
7e0a4d
* Thu Jul 14 2016 Petr Stodulka <pstodulk@redhat.com> - 6.0-30
7e0a4d
- rename patch unzip-6.0-nostrip.patch to unzip-6.0-configure.patch
7e0a4d
  so linking is now configurable from the spec file
7e0a4d
- define __global_ldflags on EL <= 7
7e0a4d
- set LFLAGS2 with __global_ldflags for hardened build
7e0a4d
  Resolves: #1330519
7e0a4d
7e0a4d
* Fri Jul 01 2016 Petr Stodulka <pstodulk@redhat.com> - 6.0-29
7e0a4d
- added build parameter "-DNO_LCHMOD" because lchmod isn't provided on Linux
7e0a4d
  system
7e0a4d
  Resolves: #1350627
7e0a4d
7e0a4d
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 6.0-28
7e0a4d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
7e0a4d
7e0a4d
* Wed Nov 25 2015 Petr Stodulka <pstodulk@redhat.com> - 6.0-27
7e0a4d
- fix print of non-ascii filenames (#225576)
7e0a4d
7e0a4d
* Fri Nov 13 2015 Petr Stodulka <pstodulk@redhat.com> - 6.0-26
7e0a4d
- fix unsigned overflow patch for #1260944 (#1281804)
7e0a4d
7e0a4d
* Thu Oct 29 2015 Petr Stodulka <pstodulk@redhat.com> - 6.0-25
7e0a4d
- add support of non-latin and non-unicode encodings for filenames (#885540)
7e0a4d
7e0a4d
* Wed Sep 23 2015 Kamil Dudka <kdudka@redhat.com> - 6.0-24
7e0a4d
- prevent unsigned overflow on invalid input (#1260944)
7e0a4d
7e0a4d
* Mon Sep 14 2015 Kamil Dudka <kdudka@redhat.com> - 6.0-23
7e0a4d
- Fix heap overflow and infinite loop when invalid input is given (#1260947)
7e0a4d
7e0a4d
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.0-22
7e0a4d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
7e0a4d
7e0a4d
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 6.0-21
7e0a4d
- Rebuilt for Fedora 23 Change
7e0a4d
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
7e0a4d
7e0a4d
* Wed Feb 11 2015 Petr Stodulka <pstodulk@redhat.com> - 6.0-20
7e0a4d
- re-patch CVE-2014-9636 - original patch was incorrect (#1184986)
7e0a4d
7e0a4d
* Tue Feb 10 2015 Petr Stodulka <pstodulk@redhat.com> - 6.0-19
7e0a4d
- Fix CVE-2014-8139 - CRC32 verification heap-based buffer overread 
7e0a4d
  (#1174844)
7e0a4d
- Fix CVE-2014-8140 - out-of-bounds write issue in test_compr_eb()
7e0a4d
  (#1174851)
7e0a4d
- Fix CVE-2014-8141 - getZip64Data() out-of-bounds read issues
7e0a4d
  (#1174856)
7e0a4d
- Fix buffer overflow on long file sizes
7e0a4d
  (#1191136)
7e0a4d
7e0a4d
* Mon Jan 26 2015 Petr Stodulka <pstodulk@redhat.com> - 6.0-18
7e0a4d
- Fix security bug - CVE-2014-9636
7e0a4d
7e0a4d
* Fri Nov 21 2014 Petr Stodulka <pstodulk@redhat.com> - 6.0-17
7e0a4d
- Fix unitialized reads (#558738)
7e0a4d
- Fix fix broken -X option - never worked before. Added -DIZ_HAVE_UXUIDGID
7e0a4d
  option for compilation.
7e0a4d
  (#935202)
7e0a4d
7e0a4d
* Thu Nov 06 2014 Petr Stodulka <pstodulk@redhat.com> - 6.0-16
7e0a4d
- Fix producing of incorrect output due to memcpy overlapping
7e0a4d
  by added option -D NOMEMCPY to compile section.
7e0a4d
  (#1153388)
7e0a4d
7e0a4d
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.0-15
7e0a4d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
7e0a4d
7e0a4d
* Fri Jun 06 2014 Petr Stodulka <pstodulk@redhat.com> - 6.0-14
7e0a4d
- Fix previous patch (#1104018) - case-insensitive matching
7e0a4d
  was reversed in function recmatch
7e0a4d
7e0a4d
* Wed Jun 04 2014 Petr Stodulka <pstodulk@redhat.com> - 6.0-13
7e0a4d
- Solve problem with non-functional case-insensitive matching
7e0a4d
  (#1104018)
7e0a4d
- Added patch for build option "-Werror=format-security"
7e0a4d
  However solve only false positives - here is not really
7e0a4d
  vulnerable print.
7e0a4d
7e0a4d
* Mon Oct 21 2013 Petr Stodulka <pstodulk@redhat.com> - 6.0.-12
7e0a4d
- Solve problem with symlink errors in archive with many files
7e0a4d
  (#740012,#972427)
7e0a4d
7e0a4d
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.0-11
7e0a4d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
7e0a4d
7e0a4d
* Mon Jun 24 2013 Tom Callaway <spot@fedoraproject.org> - 6.0-10
7e0a4d
- unset WILD_STOP_AT_DIR
7e0a4d
7e0a4d
* Tue May 28 2013 Tom Callaway <spot@fedoraproject.org> - 6.0-9
7e0a4d
- Apply changes to match.c to sync with recmatch from util.c (from zip 3.0)
7e0a4d
  This also resolves the license issue in that file.
7e0a4d
7e0a4d
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.0-8
7e0a4d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
7e0a4d
7e0a4d
* Mon Dec 10 2012 Michal Luscon <mluscon@redhat.com> 6.0-7
7e0a4d
- Resolves: #884679 - zip files with bzip2 compression 
7e0a4d
7e0a4d
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.0-6
7e0a4d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
7e0a4d
7e0a4d
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org>
7e0a4d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
7e0a4d
7e0a4d
- Fix minor manpage spelling mistake
7e0a4d
  Resolves: #675454
7e0a4d
7e0a4d
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.0-4
7e0a4d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
7e0a4d
7e0a4d
* Mon May 24 2010 Karel Klic <kklic@redhat.com> - 6.0-3
7e0a4d
- Removed BuildRoot tag
7e0a4d
- Removed %%clean section
7e0a4d
- Removed trailing whitespaces in the spec file
7e0a4d
7e0a4d
* Mon Nov 30 2009 Karel Klic <kklic@redhat.com> - 6.0-2
7e0a4d
- Fixed a buffer overflow (rhbz#532380, unzip-6.0-attribs-overflow.patch)
7e0a4d
- Generate debuginfos (rhbz#540220, unzip-6.0-nostrip.patch)
7e0a4d
7e0a4d
* Mon Nov 16 2009 Karel Klic <kklic@redhat.com> - 6.0-1
7e0a4d
- New upstream version
7e0a4d
- Compiled using `make generic_gcc` (includes asm)
7e0a4d
- Removed unzip542-rpmoptflags.patch, because RPM_OPT_FLAGS
7e0a4d
  are provided using command line
7e0a4d
- Removed unzip-5.51-link-segv.patch, because the link file
7e0a4d
  is not reopened in the current version
7e0a4d
- Removed unzip-5.51-link-segv2.patch, the bug was already fixed
7e0a4d
  in open_outfile in 5.52
7e0a4d
- Removed unzip-5.52-toctou.patch (CAN-2005-2475), the vulnerability
7e0a4d
  is fixed in the current version
7e0a4d
- Removed unzip-5.52-near-4GB.patch, unzip-5.52-near-4GB2.patch,
7e0a4d
  unzip-5.52-4GB3.patch, and unzip-5.52-4GB_types.patch, because
7e0a4d
  the current version supports large files
7e0a4d
- Removed unzip-5.52-long-filename.patch, the current version
7e0a4d
  fixes the vulnerability by checking the length of command line
7e0a4d
  arguments in unzip.c
7e0a4d
- Removed unzip-5.52-makefile.patch, because we no longer create
7e0a4d
  the link manually
7e0a4d
- Removed unzip-5.52-open.patch, the current version uses umask.
7e0a4d
- Removed unzip-5.52-cve-2008-0888.patch, the current version
7e0a4d
  fixes this vulnerability
7e0a4d
- Ported unzip-5.52-249057.patch to current version (unzip-6.0-close)
7e0a4d
7e0a4d
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.52-11
7e0a4d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
7e0a4d
7e0a4d
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.52-10
7e0a4d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
7e0a4d
7e0a4d
* Wed Mar 19 2008 Ivana Varekova <varekova@redhat.com> - 5.52-9
7e0a4d
- fix crash (double free) on malformed zip archive
7e0a4d
  CVE-2008-0888 (#431438)
7e0a4d
7e0a4d
* Fri Feb  8 2008 Ivana Varekova <varekova@redhat.com> - 5.52-8
7e0a4d
- fix output when out of space error appears
7e0a4d
7e0a4d
* Wed Jan 23 2008 Ivana Varekova <varekova@redhat.com> - 5.52-7
7e0a4d
- fix another long file support problem
7e0a4d
7e0a4d
* Tue Jan 22 2008 Ivana Varekova <varekova@redhat.com> - 5.52-6
7e0a4d
- add 4GB patch (#429674)
7e0a4d
7e0a4d
* Tue Sep  4 2007 Ivana Varekova <varekova@redhat.com> - 5.52-5
7e0a4d
- fix open call
7e0a4d
7e0a4d
* Wed Feb  7 2007 Ivana Varekova <varekova@redhat.com> - 5.52-4
7e0a4d
- incorporate the next peckage review comment
7e0a4d
7e0a4d
* Tue Feb  6 2007 Ivana Varekova <varekova@redhat.com> - 5.52-3
7e0a4d
- Resolves: 226516
7e0a4d
  Incorporate the package review
7e0a4d
7e0a4d
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 5.52-2.2.1
7e0a4d
- rebuild
7e0a4d
7e0a4d
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 5.52-2.2
7e0a4d
- bump again for double-long bug on ppc(64)
7e0a4d
7e0a4d
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 5.52-2.1
7e0a4d
- rebuilt for new gcc4.1 snapshot and glibc changes
7e0a4d
7e0a4d
* Mon Feb  6 2006 Ivana Varekova <varekova@redhat.com> 5.52-2
7e0a4d
- fix bug 180078 - unzip -l causing error
7e0a4d
- fix CVE-2005-4667 - unzip long file name buffer overflow
7e0a4d
7e0a4d
* Thu Dec 22 2005 Ivana Varekova <varekova@redhat.com> 5.52-1
7e0a4d
- update to 5.52
7e0a4d
7e0a4d
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
7e0a4d
- rebuilt
7e0a4d
7e0a4d
* Wed Aug  3 2005 Ivana Varekova <varekova@redhat.com> 5.51-12
7e0a4d
- fix bug 164928 - TOCTOU issue in unzip
7e0a4d
7e0a4d
* Mon May  9 2005 Ivana Varekova <varekova@redhat.com> 5.51-11
7e0a4d
- fix bug 156959 – invalid file mode on created files
7e0a4d
7e0a4d
* Mon Mar  7 2005 Ivana Varekova <varekova@redhat.com> 5.51-10
7e0a4d
- rebuilt
7e0a4d
7e0a4d
* Thu Feb 10 2005 Ivana Varekova <varekova@redhat.com> 5.51-9
7e0a4d
- fix the other problem with unpacking zipfiles containing symlinks
7e0a4d
  (bug #134073)
7e0a4d
7e0a4d
* Thu Feb 03 2005 Ivana Varekova <varekova@redhat.com> 5.51-8
7e0a4d
- fix segfault with unpacking of zipfiles containing dangling symlinks
7e0a4d
  (bug #134073)
7e0a4d
7e0a4d
* Thu Dec 02 2004 Lon Hohberger <lhh@redhat.com> 5.51-6
7e0a4d
- Rebuild
7e0a4d
7e0a4d
* Thu Dec 02 2004 Lon Hohberger <lhh@redhat.com> 5.51-5
7e0a4d
- Fix segfault on extraction of symlinks
7e0a4d
7e0a4d
* Mon Jun 21 2004 Lon Hohberger <lhh@redhat.com> 5.51-4
7e0a4d
- Extend max file/archive size to 2^32-8193 (4294959103) bytes
7e0a4d
7e0a4d
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
7e0a4d
- rebuilt
7e0a4d
7e0a4d
* Tue Jun 08 2004 Lon Hohberger <lhh@redhat.com> 5.51-2
7e0a4d
- Rebuild
7e0a4d
7e0a4d
* Tue Jun 08 2004 Lon Hohberger <lhh@redhat.com> 5.51-1.1
7e0a4d
- Update to 5.51; remove dotdot patch.
7e0a4d
7e0a4d
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
7e0a4d
- rebuilt
7e0a4d
7e0a4d
* Mon Nov 17 2003 Lon Hohberger <lhh@redhat.com> 5.50-36
7e0a4d
- Rebuild for FC-next
7e0a4d
7e0a4d
* Fri Aug 01 2003 Lon Hohberger <lhh@redhat.com> 5.50-35
7e0a4d
- Rebuild for Severn
7e0a4d
7e0a4d
* Fri Aug 01 2003 Lon Hohberger <lhh@redhat.com> 5.50-34
7e0a4d
- Rebuild for Taroon
7e0a4d
7e0a4d
* Fri Aug 01 2003 Lon Hohberger <lhh@redhat.com> 5.50-33
7e0a4d
- Rebuild for 9 errata
7e0a4d
7e0a4d
* Fri Aug 01 2003 Lon Hohberger <lhh@redhat.com> 5.50-32
7e0a4d
- Rebuild for 8.0 errata
7e0a4d
7e0a4d
* Fri Aug 01 2003 Lon Hohberger <lhh@redhat.com> 5.50-31
7e0a4d
- Rebuild for 7.3 errata
7e0a4d
7e0a4d
* Wed Jul 30 2003 Lon Hohberger <lhh@redhat.com> 5.50-30
7e0a4d
- SECURITY Round 3: Fix up original patch (from 5.50-9) to fix
7e0a4d
^V/ exploit, but still allow '-:', which the other patch (5.50-18)
7e0a4d
does not allow.  Never allow explicit writing to the root
7e0a4d
directory; force users to change there and extract it manually.
7e0a4d
7e0a4d
* Wed Jul 30 2003 Lon Hohberger <lhh@redhat.com> 5.50-29
7e0a4d
- Rebuild for Severn
7e0a4d
7e0a4d
* Wed Jul 30 2003 Lon Hohberger <lhh@redhat.com> 5.50-28
7e0a4d
- Rebuild
7e0a4d
7e0a4d
* Wed Jul 30 2003 Lon Hohberger <lhh@redhat.com> 5.50-27
7e0a4d
- Rebuild for 9
7e0a4d
7e0a4d
* Wed Jul 30 2003 Lon Hohberger <lhh@redhat.com> 5.50-26
7e0a4d
- Rebuild for 8.0
7e0a4d
7e0a4d
* Tue Jul 22 2003 Lon Hohberger <lhh@redhat.com> 5.50-23
7e0a4d
- Rebuild for 7.3
7e0a4d
7e0a4d
* Mon Jul 21 2003 Lon Hohberger <lhh@redhat.com> 5.50-22
7e0a4d
- Rebuild for Severn
7e0a4d
7e0a4d
* Mon Jul 21 2003 Lon Hohberger <lhh@redhat.com> 5.50-21
7e0a4d
- Rebuild
7e0a4d
7e0a4d
* Mon Jul 21 2003 Lon Hohberger <lhh@redhat.com> 5.50-20
7e0a4d
- Rebuild for 9
7e0a4d
7e0a4d
* Mon Jul 21 2003 Lon Hohberger <lhh@redhat.com> 5.50-19
7e0a4d
- Rebuild for 8.0
7e0a4d
7e0a4d
* Mon Jul 21 2003 Lon Hohberger <lhh@redhat.com> 5.50-18
7e0a4d
- SECURITY: Incorporate far cleaner patch from Ben Laurie
7e0a4d
<ben@algroup.co.uk> which also fixes ^V/ (quote-slash).
7e0a4d
Patch checks post-decode as opposed to inline as previous
7e0a4d
patch does.
7e0a4d
7e0a4d
* Mon Jun 16 2003 Lon Hohberger <lhh@redhat.com> 5.50-17
7e0a4d
- Rebuilt per request
7e0a4d
7e0a4d
* Thu Jun 12 2003 Lon Hohberger <lhh@redhat.com> 5.50-16
7e0a4d
- Rebuilt
7e0a4d
7e0a4d
* Thu Jun 12 2003 Lon Hohberger <lhh@redhat.com> 5.50-15
7e0a4d
- Rebuilt
7e0a4d
7e0a4d
* Thu Jun 12 2003 Lon Hohberger <lhh@redhat.com> 5.50-14
7e0a4d
- Rebuilt: Red Hat Linux 9
7e0a4d
7e0a4d
* Thu Jun 12 2003 Lon Hohberger <lhh@redhat.com> 5.50-13
7e0a4d
- Rebuilt: Red Hat Enterprise Linux 2.1
7e0a4d
7e0a4d
* Thu Jun 12 2003 Lon Hohberger <lhh@redhat.com> 5.50-12
7e0a4d
- Rebuilt Red Hat Linux 8.0
7e0a4d
7e0a4d
* Thu Jun 12 2003 Lon Hohberger <lhh@redhat.com> 5.50-11
7e0a4d
- Rebuilt Red Hat Linux 7.3
7e0a4d
7e0a4d
* Wed Jun 11 2003 Lon Hohberger <lhh@redhat.com> 5.50-10
7e0a4d
- Rebuilt
7e0a4d
7e0a4d
* Wed Jun 11 2003 Lon Hohberger <lhh@redhat.com> 5.50-9
7e0a4d
- SECURITY: Scour start of filename for ../ patterns which
7e0a4d
include quote and/or control characters.
7e0a4d
7e0a4d
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
7e0a4d
- rebuilt
7e0a4d
7e0a4d
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
7e0a4d
- rebuilt
7e0a4d
7e0a4d
* Thu Dec 19 2002 Tim Powers <timp@redhat.com>
7e0a4d
- bump and rebuild
7e0a4d
7e0a4d
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
7e0a4d
- automated rebuild
7e0a4d
7e0a4d
* Thu May 23 2002 Tim Powers <timp@redhat.com>
7e0a4d
- automated rebuild
7e0a4d
7e0a4d
* Thu Apr 25 2002 Trond Eivind Glomsrød <teg@redhat.com> 5.50-3
7e0a4d
- Rebuild
7e0a4d
7e0a4d
* Tue Apr  2 2002 Trond Eivind Glomsrød <teg@redhat.com> 5.50-2
7e0a4d
- Make it not strip
7e0a4d
7e0a4d
* Wed Mar 13 2002 Trond Eivind Glomsrød <teg@redhat.com> 5.50-1
7e0a4d
- 5.50
7e0a4d
7e0a4d
* Thu Feb 21 2002 Trond Eivind Glomsrød <teg@redhat.com> 5.42-3
7e0a4d
- Rebuild
7e0a4d
7e0a4d
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
7e0a4d
- automated rebuild
7e0a4d
7e0a4d
* Mon May 21 2001 Trond Eivind Glomsrød <teg@redhat.com>
7e0a4d
- 5.42
7e0a4d
- Don't strip binaries explicitly
7e0a4d
- build without assembly, it doesn't seem to increase performance
7e0a4d
- make it respect RPM_OPT_FLAGS, define _GNU_SOURCE
7e0a4d
- use %%{_tmppath}
7e0a4d
- "License:" replaces "Copyright:"
7e0a4d
- Update URL
7e0a4d
- include zipgrep
7e0a4d
- COPYING doesn't exist anymore, include LICENSE instead
7e0a4d
7e0a4d
* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
7e0a4d
- automatic rebuild
7e0a4d
7e0a4d
* Sun Jun 11 2000 BIll Nottingham <notting@redhat.com>
7e0a4d
- rebuild in new env.; FHS fixes.
7e0a4d
7e0a4d
* Tue Apr 18 2000 Bernhard Rosenkraenzer <bero@redhat.com>
7e0a4d
- 4.51 (an acceptable license at last...)
7e0a4d
7e0a4d
* Thu Feb  3 2000 Bill Nottingham <notting@redhat.com>
7e0a4d
- handle compressed man pages
7e0a4d
7e0a4d
* Fri Jul 30 1999 Bill Nottingham <notting@redhat.com>
7e0a4d
- update to 5.40
7e0a4d
7e0a4d
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
7e0a4d
- auto rebuild in the new build environment (release 5)
7e0a4d
7e0a4d
* Thu Dec 17 1998 Michael Maher <mike@redhat.com>
7e0a4d
- built for 6.0
7e0a4d
7e0a4d
* Tue Aug 11 1998 Jeff Johnson <jbj@redhat.com>
7e0a4d
- build root
7e0a4d
7e0a4d
* Mon Apr 27 1998 Prospector System <bugs@redhat.com>
7e0a4d
- translations modified for de, fr, tr
7e0a4d
7e0a4d
* Tue Oct 21 1997 Erik Troan <ewt@redhat.com>
7e0a4d
- builds on non i386 platforms
7e0a4d
7e0a4d
* Mon Oct 20 1997 Otto Hammersmith <otto@redhat.com>
7e0a4d
- updated the version
7e0a4d
7e0a4d
* Thu Jul 10 1997 Erik Troan <ewt@redhat.com>
7e0a4d
- built against glibc