This commit is contained in:
parent
94bf738a5a
commit
47e1814c2b
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:b4df54734d1f3dc78b606a1811d26ab2f30cf49bef243e22c4ae9d7a27224e5f
|
|
||||||
size 589246
|
|
20
tcpdump-3.9.6-bgp-overflow.diff
Normal file
20
tcpdump-3.9.6-bgp-overflow.diff
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
--- print-bgp.c
|
||||||
|
+++ print-bgp.c
|
||||||
|
@@ -669,7 +669,7 @@
|
||||||
|
tlen-=15;
|
||||||
|
|
||||||
|
/* ok now the variable part - lets read out TLVs*/
|
||||||
|
- while (tlen>0) {
|
||||||
|
+ while (tlen>0 && strlen <= buflen) {
|
||||||
|
if (tlen < 3)
|
||||||
|
return -1;
|
||||||
|
TCHECK2(pptr[0], 3);
|
||||||
|
@@ -684,7 +684,7 @@
|
||||||
|
tlv_type,
|
||||||
|
tlv_len);
|
||||||
|
ttlv_len=ttlv_len/8+1; /* how many bytes do we need to read ? */
|
||||||
|
- while (ttlv_len>0) {
|
||||||
|
+ while (ttlv_len>0 && strlen <= buflen) {
|
||||||
|
TCHECK(pptr[0]);
|
||||||
|
strlen+=snprintf(buf+strlen,buflen-strlen, "%02x",*pptr++);
|
||||||
|
ttlv_len--;
|
3
tcpdump-3.9.6.tar.bz2
Normal file
3
tcpdump-3.9.6.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:24c350e1c5ba24d2cb47e975477b22fb9e041cded2ae489f82eee9136d37d61b
|
||||||
|
size 589766
|
@ -1,3 +1,32 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jul 12 11:37:08 CEST 2007 - prusnak@suse.cz
|
||||||
|
|
||||||
|
- update to 3.9.6
|
||||||
|
* added support for:
|
||||||
|
- OIF RSVP Extensions UNI 1.0 Rev. 2 and additional RSVP objects
|
||||||
|
- Message-id NACK c-type
|
||||||
|
- 802.3ah loopback ctrl msg
|
||||||
|
- Multiple-STP as per 802.1s
|
||||||
|
- rapid-SPT as per 802.1w
|
||||||
|
- CFM Link-trace msg, Link-trace-Reply msg,
|
||||||
|
- unidirectional link detection
|
||||||
|
- the olsr protocol as per RFC 3626 plus the LQ extensions from olsr.org
|
||||||
|
- variable-length checksum in DCCP, as per section 9 of RFC 4340
|
||||||
|
- per-VLAN spanning tree and per-VLAN rapid spanning tree
|
||||||
|
- Multiple-STP as per 802.1s
|
||||||
|
- the cisco propriatry 'dynamic trunking protocol'
|
||||||
|
- the cisco proprietary VTP protocol
|
||||||
|
- additional values in pflog
|
||||||
|
* changes to both TCP and IP Printer Output
|
||||||
|
* fixed a potential buffer overflow in the 802.11 printer
|
||||||
|
* print basic info about a few more Cisco LAN protocols
|
||||||
|
* mDNS cleanup
|
||||||
|
* ICMP MPLS rework of the extension code
|
||||||
|
* use the correct codepoint for the OSPF simple text auth token entry
|
||||||
|
* use safeputs to print the password
|
||||||
|
* update dhcp6 options table as per IETF standardization activities
|
||||||
|
- fixed overflow in bgp (bgp-overflow.patch) [#291356]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Mar 2 11:44:35 CET 2007 - prusnak@suse.cz
|
Fri Mar 2 11:44:35 CET 2007 - prusnak@suse.cz
|
||||||
|
|
||||||
|
36
tcpdump.spec
36
tcpdump.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package tcpdump (Version 3.9.5)
|
# spec file for package tcpdump (Version 3.9.6)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
@ -12,10 +12,10 @@
|
|||||||
|
|
||||||
Name: tcpdump
|
Name: tcpdump
|
||||||
BuildRequires: libpcap libsmi openssl-devel
|
BuildRequires: libpcap libsmi openssl-devel
|
||||||
Version: 3.9.5
|
Version: 3.9.6
|
||||||
Release: 7
|
Release: 1
|
||||||
Autoreqprov: on
|
Autoreqprov: on
|
||||||
License: BSD License and BSD-like
|
License: BSD 3-Clause
|
||||||
Group: Productivity/Networking/Diagnostic
|
Group: Productivity/Networking/Diagnostic
|
||||||
URL: http://www.tcpdump.org/
|
URL: http://www.tcpdump.org/
|
||||||
Summary: A Packet Sniffer
|
Summary: A Packet Sniffer
|
||||||
@ -27,6 +27,7 @@ Patch2: %{name}-%{version}-aliasing.diff
|
|||||||
Patch3: %{name}-%{version}-uninitialized.diff
|
Patch3: %{name}-%{version}-uninitialized.diff
|
||||||
Patch4: %{name}-%{version}-juniper.diff
|
Patch4: %{name}-%{version}-juniper.diff
|
||||||
Patch5: %{name}-%{version}-802_11-overflow.diff
|
Patch5: %{name}-%{version}-802_11-overflow.diff
|
||||||
|
Patch6: %{name}-%{version}-bgp-overflow.diff
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -44,6 +45,7 @@ rm -rf win32
|
|||||||
%patch3
|
%patch3
|
||||||
%patch4
|
%patch4
|
||||||
%patch5
|
%patch5
|
||||||
|
%patch6
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{suse_update_config -f}
|
%{suse_update_config -f}
|
||||||
@ -73,6 +75,32 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_sbindir}/*
|
%{_sbindir}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jul 12 2007 - prusnak@suse.cz
|
||||||
|
- update to 3.9.6
|
||||||
|
* added support for:
|
||||||
|
- OIF RSVP Extensions UNI 1.0 Rev. 2 and additional RSVP objects
|
||||||
|
- Message-id NACK c-type
|
||||||
|
- 802.3ah loopback ctrl msg
|
||||||
|
- Multiple-STP as per 802.1s
|
||||||
|
- rapid-SPT as per 802.1w
|
||||||
|
- CFM Link-trace msg, Link-trace-Reply msg,
|
||||||
|
- unidirectional link detection
|
||||||
|
- the olsr protocol as per RFC 3626 plus the LQ extensions from olsr.org
|
||||||
|
- variable-length checksum in DCCP, as per section 9 of RFC 4340
|
||||||
|
- per-VLAN spanning tree and per-VLAN rapid spanning tree
|
||||||
|
- Multiple-STP as per 802.1s
|
||||||
|
- the cisco propriatry 'dynamic trunking protocol'
|
||||||
|
- the cisco proprietary VTP protocol
|
||||||
|
- additional values in pflog
|
||||||
|
* changes to both TCP and IP Printer Output
|
||||||
|
* fixed a potential buffer overflow in the 802.11 printer
|
||||||
|
* print basic info about a few more Cisco LAN protocols
|
||||||
|
* mDNS cleanup
|
||||||
|
* ICMP MPLS rework of the extension code
|
||||||
|
* use the correct codepoint for the OSPF simple text auth token entry
|
||||||
|
* use safeputs to print the password
|
||||||
|
* update dhcp6 options table as per IETF standardization activities
|
||||||
|
- fixed overflow in bgp (bgp-overflow.patch) [#291356]
|
||||||
* Fri Mar 02 2007 - prusnak@suse.cz
|
* Fri Mar 02 2007 - prusnak@suse.cz
|
||||||
- fixed one byte overflow (802_11-overflow.diff) [#250163]
|
- fixed one byte overflow (802_11-overflow.diff) [#250163]
|
||||||
* Wed Jan 03 2007 - prusnak@suse.cz
|
* Wed Jan 03 2007 - prusnak@suse.cz
|
||||||
|
Loading…
Reference in New Issue
Block a user