This commit is contained in:
parent
3d38c579af
commit
979dd2226d
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7b4adacd86ba9f1c6a3a0dc74303d03635cd361c23c312ff9698e0c2a44b9f0d
|
||||
size 13161721
|
3
wireshark-1.0.7.tar.bz2
Normal file
3
wireshark-1.0.7.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:dc6d7ce1d9fd576fc75f79c2e541786f33706c03996ab93e5c0056b74bca0021
|
||||
size 13289668
|
@ -1,3 +1,45 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 17 21:27:27 CEST 2009 - cseader@novell.com
|
||||
|
||||
- removing --with-ssl and adding --with-gnutls
|
||||
* per Wireshark documentation "The SSL dissector is fully functional and even supports
|
||||
advanced features such as decryption of SSL if the encryption key can be provided and
|
||||
WireShark is compiled against Gnu-TLS (rather than openssl or bsafe)."
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 15 23:43:32 CEST 2009 - cseader@novell.com
|
||||
|
||||
- updated to 1.0.7
|
||||
o security fixes
|
||||
* The PROFINET dissector was vulnerable to a format string overflow. (Bug 3382)
|
||||
Versions affected: 0.99.6 to 1.0.6
|
||||
CVE-2009-1210
|
||||
* The LDAP dissector could crash on Windows. (Bug 3262)
|
||||
Versions affected: 0.99.2 to 1.0.6
|
||||
CVE-2009-1267
|
||||
* The Check Point High-Availability Protocol (CPHAP) dissector could crash. (Bug 3269)
|
||||
Versions affected: 0.9.6 to 1.0.6
|
||||
CVE-2009-1268
|
||||
* Wireshark could crash while loading a Tektronix .rf5 file. (Bug 3366)
|
||||
Versions affected: 0.99.6 to 1.0.6
|
||||
CVE-2009-1269
|
||||
o bug fixes
|
||||
* Correct use of proto_tree_add_int_format() (Bug 3048)
|
||||
* RTP dynamic payload clock rates incorrectly determined (Bug 3067)
|
||||
* TShark fails to properly close capture files when opening new ones (Bug 3172)
|
||||
* ANSI MAP digits type decode and bitmask corrections (Bug 3233)
|
||||
* Two small patches for ipvs-syncd dissector (Bug 3236)
|
||||
* BGP capability dissection failure (Bug 3247)
|
||||
* ANSI MAP fix for missing MEID/MSC ID number in RegNot (Bug 3255)
|
||||
* BACnet PrivateTransferError shows malformed packet (Bug 3257)
|
||||
* Windows silent installer is not that silent (Bug 3260)
|
||||
* Crash in ASN.1 dissector when using 'type table' (Bug 3271)
|
||||
* 802.11n SM Power save mode value 0x3 label is incorrect (Bug 3276)
|
||||
* 802.11 WME ie displayed incorrectly (Bug 3284)
|
||||
* "Copy as filter" from the packet list has been fixed.
|
||||
o updated protocol support
|
||||
* ACN, ANSI MAP, ASN.1 BACnet, BGP, CPHAP, GSM MAP, IEEE 802.11, IPVS, LDAP, NetFlow/IPFIX, PROFINET, RTP, SNMP, WSP
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 16 15:11:00 CET 2009 - prusnak@suse.cz
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package wireshark (Version 1.0.6)
|
||||
# spec file for package wireshark (Version 1.0.7)
|
||||
#
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
@ -19,13 +19,13 @@
|
||||
|
||||
|
||||
Name: wireshark
|
||||
BuildRequires: cairo-devel gtk2-devel krb5-devel libadns-devel libpcap-devel net-snmp-devel openssl-devel pcre-devel tcpd-devel zlib-devel
|
||||
BuildRequires: cairo-devel gtk2-devel krb5-devel libadns-devel libgcrypt-devel libgnutls-devel libpcap-devel net-snmp-devel openssl-devel pcre-devel tcpd-devel zlib-devel
|
||||
BuildRequires: bison flex python update-desktop-files
|
||||
License: GPL v2 or later
|
||||
Group: Productivity/Networking/Diagnostic
|
||||
AutoReqProv: on
|
||||
Summary: A Network Traffic Analyser
|
||||
Version: 1.0.6
|
||||
Version: 1.0.7
|
||||
Release: 1
|
||||
Url: http://www.wireshark.org/
|
||||
Source: http://www.wireshark.org/download/src/%{name}-%{version}.tar.bz2
|
||||
@ -136,7 +136,7 @@ export CFLAGS="$RPM_OPT_FLAGS -fstack-protector"
|
||||
--with-pcap \
|
||||
--with-zlib \
|
||||
--with-pcre \
|
||||
--with-ssl \
|
||||
--with-gnutls \
|
||||
--with-net-snmp \
|
||||
--with-krb5 \
|
||||
--with-adns \
|
||||
@ -186,6 +186,42 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_mandir}/man1/idl2wrs*
|
||||
|
||||
%changelog
|
||||
* Fri Apr 17 2009 cseader@novell.com
|
||||
- removing --with-ssl and adding --with-gnutls
|
||||
* per Wireshark documentation "The SSL dissector is fully functional and even supports
|
||||
advanced features such as decryption of SSL if the encryption key can be provided and
|
||||
WireShark is compiled against Gnu-TLS (rather than openssl or bsafe)."
|
||||
* Wed Apr 15 2009 cseader@novell.com
|
||||
- updated to 1.0.7
|
||||
o security fixes
|
||||
* The PROFINET dissector was vulnerable to a format string overflow. (Bug 3382)
|
||||
Versions affected: 0.99.6 to 1.0.6
|
||||
CVE-2009-1210
|
||||
* The LDAP dissector could crash on Windows. (Bug 3262)
|
||||
Versions affected: 0.99.2 to 1.0.6
|
||||
CVE-2009-1267
|
||||
* The Check Point High-Availability Protocol (CPHAP) dissector could crash. (Bug 3269)
|
||||
Versions affected: 0.9.6 to 1.0.6
|
||||
CVE-2009-1268
|
||||
* Wireshark could crash while loading a Tektronix .rf5 file. (Bug 3366)
|
||||
Versions affected: 0.99.6 to 1.0.6
|
||||
CVE-2009-1269
|
||||
o bug fixes
|
||||
* Correct use of proto_tree_add_int_format() (Bug 3048)
|
||||
* RTP dynamic payload clock rates incorrectly determined (Bug 3067)
|
||||
* TShark fails to properly close capture files when opening new ones (Bug 3172)
|
||||
* ANSI MAP digits type decode and bitmask corrections (Bug 3233)
|
||||
* Two small patches for ipvs-syncd dissector (Bug 3236)
|
||||
* BGP capability dissection failure (Bug 3247)
|
||||
* ANSI MAP fix for missing MEID/MSC ID number in RegNot (Bug 3255)
|
||||
* BACnet PrivateTransferError shows malformed packet (Bug 3257)
|
||||
* Windows silent installer is not that silent (Bug 3260)
|
||||
* Crash in ASN.1 dissector when using 'type table' (Bug 3271)
|
||||
* 802.11n SM Power save mode value 0x3 label is incorrect (Bug 3276)
|
||||
* 802.11 WME ie displayed incorrectly (Bug 3284)
|
||||
* "Copy as filter" from the packet list has been fixed.
|
||||
o updated protocol support
|
||||
* ACN, ANSI MAP, ASN.1 BACnet, BGP, CPHAP, GSM MAP, IEEE 802.11, IPVS, LDAP, NetFlow/IPFIX, PROFINET, RTP, SNMP, WSP
|
||||
* Mon Feb 16 2009 prusnak@suse.cz
|
||||
- updated to 1.0.6
|
||||
o security fixes
|
||||
@ -473,7 +509,7 @@ rm -rf $RPM_BUILD_ROOT
|
||||
Catapult DCT 2000, Endace ERF, Juniper NetScreen snoop, Visual
|
||||
Networks, Windows Sniffer (NetXRay)
|
||||
- removed fwrite_unused_result.patch
|
||||
* Mon Sep 03 2007 ro@suse.de
|
||||
* Tue Sep 04 2007 ro@suse.de
|
||||
- disable -Werror for now
|
||||
* Thu Jul 26 2007 prusnak@suse.cz
|
||||
- changed libpcap to libpcap-devel in BuildRequires
|
||||
@ -636,7 +672,7 @@ rm -rf $RPM_BUILD_ROOT
|
||||
[#35118]
|
||||
* Wed Feb 25 2004 postadal@suse.cz
|
||||
- updated to version 0.10.2
|
||||
* Thu Jan 22 2004 mmj@suse.de
|
||||
* Fri Jan 23 2004 mmj@suse.de
|
||||
- Update to 0.10.0a
|
||||
- Use -fno-strict-aliasing
|
||||
- Use gtk2
|
||||
@ -674,7 +710,7 @@ rm -rf $RPM_BUILD_ROOT
|
||||
* new protocols: MDSHDR, MEGACO, MySQL, SDLC, X.29
|
||||
* Mon Jan 27 2003 ro@suse.de
|
||||
- fix build with gcc-3.3
|
||||
* Wed Jan 22 2003 postadal@suse.cz
|
||||
* Thu Jan 23 2003 postadal@suse.cz
|
||||
- updated to version 0.9.8
|
||||
* new protocols: ARCNET, ClearCase NFS, DCERPC LSA_DS, Fibre Channel,
|
||||
HyperSCSI, MDNS, PCLI, RPL, 802.1s MSTP, FIX, GSS-API, Interbase, NDPS,
|
||||
|
Loading…
Reference in New Issue
Block a user