Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id C0E8E1A9239 for ; Tue, 23 Nov 2021 22:12:04 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id CC3C984EA5; Tue, 23 Nov 2021 22:12:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 12BCF84E90 for ; Tue, 23 Nov 2021 22:12:03 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id misDT7dlHXyo for ; Tue, 23 Nov 2021 22:12:02 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 3365C84CE3 for ; Tue, 23 Nov 2021 22:12:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 273B2FAEC; Tue, 23 Nov 2021 22:12:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1637705522153440" MIME-Version: 1.0 Date: Tue, 23 Nov 2021 22:12:02 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/net/wireshark To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20211123221202.273B2FAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1637705522153440 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: wiz Date: Tue Nov 23 22:12:02 UTC 2021 Modified Files: pkgsrc/net/wireshark: Makefile PLIST distinfo Log Message: wireshark: update to 3.4.10. Wireshark 3.4.10 Release Notes What’s New This release fixes a forward compatibility issue[1] with the I/O Graphs preferences. Bug Fixes The following vulnerabilities have been fixed: • wnpa-sec-2021-07[2] Bluetooth DHT dissector crash. Issue 17651[3]. CVE-2021-39929[4]. • wnpa-sec-2021-08[5] Bluetooth HCI_ISO dissector crash. Issue 17649[6]. CVE-2021-39926[7]. • wnpa-sec-2021-09[8] Bluetooth SDP dissector crash. Issue 17635[9]. CVE-2021-39925[10]. • wnpa-sec-2021-10[11] Bluetooth DHT dissector large loop. Issue 17677[12]. CVE-2021-39924[13]. • wnpa-sec-2021-11[14] PNRP dissector large loop. Issue 17684[15]. • wnpa-sec-2021-12[16] C12.22 dissector crash. Issue 17636[17]. CVE-2021-39922[18]. • wnpa-sec-2021-13[19] IEEE 802.11 dissector crash. Issue 17704[20]. CVE-2021-39928[21]. • wnpa-sec-2021-14[22] Modbus dissector crash. Issue 17703[23]. CVE-2021-39921[24]. • wnpa-sec-2021-15[25] IPPUSB dissector crash. Issue 17705[26]. CVE-2021-39920[27]. The following bugs have been fixed: • OSS-Fuzz: Heap-use-after-free in ROS Issue 16342[28]. • Allow for '\0' (NULL) character as filter instead of requiring 0x00 for the character match Issue 16525[29]. • Dumpcap with threads reports double received count vs captured Issue 17089[30]. • I/O Graphs values reset to default with 3.5 due to change of UAT Issue 17623[31]. • HTTP2 dissector reports an assertion error on large data frames Issue 17633[32]. • TShark stops capturing when capturing with multiple files and packet printing enabled Issue 17654[33]. • Wireshark is unable to decode the IMSI IE received in BSSMAP Perform Location request Issue 17667[34]. • WSLUA: Crash on reload if Proto has no fields Issue 17668[35]. • Crash in flow analysis for TCP Issue 17722[36]. Updated Protocol Support BT HCI_ISO, BT SDP, BT-DHT, C12.22, CAN FD, CSN1, EAPOL-MKA, EVS, GSM BSSMAP LE, HTTP2, IDMP, IEEE 1905.1a, IEEE 802.11, IPPUSB, Modbus, PNRP, and TCP New and Updated Capture File Support pcap To generate a diff of this commit: cvs rdiff -u -r1.260 -r1.261 pkgsrc/net/wireshark/Makefile cvs rdiff -u -r1.64 -r1.65 pkgsrc/net/wireshark/PLIST cvs rdiff -u -r1.149 -r1.150 pkgsrc/net/wireshark/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1637705522153440 Content-Disposition: inline Content-Length: 2390 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/wireshark/Makefile diff -u pkgsrc/net/wireshark/Makefile:1.260 pkgsrc/net/wireshark/Makefile:1.261 --- pkgsrc/net/wireshark/Makefile:1.260 Mon Nov 15 22:54:27 2021 +++ pkgsrc/net/wireshark/Makefile Tue Nov 23 22:12:01 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.260 2021/11/15 22:54:27 wiz Exp $ +# $NetBSD: Makefile,v 1.261 2021/11/23 22:12:01 wiz Exp $ -DISTNAME= wireshark-3.4.9 -PKGREVISION= 2 +DISTNAME= wireshark-3.4.10 CATEGORIES= net MASTER_SITES= https://www.wireshark.org/download/src/ EXTRACT_SUFX= .tar.xz Index: pkgsrc/net/wireshark/PLIST diff -u pkgsrc/net/wireshark/PLIST:1.64 pkgsrc/net/wireshark/PLIST:1.65 --- pkgsrc/net/wireshark/PLIST:1.64 Sat Oct 9 07:44:31 2021 +++ pkgsrc/net/wireshark/PLIST Tue Nov 23 22:12:01 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.64 2021/10/09 07:44:31 adam Exp $ +@comment $NetBSD: PLIST,v 1.65 2021/11/23 22:12:01 wiz Exp $ bin/capinfos bin/captype bin/dumpcap @@ -615,10 +615,10 @@ include/wireshark/wsutil/wsjson.h include/wireshark/wsutil/xtea.h lib/libwireshark.so lib/libwireshark.so.14 -lib/libwireshark.so.14.0.9 +lib/libwireshark.so.14.0.10 lib/libwiretap.so lib/libwiretap.so.11 -lib/libwiretap.so.11.0.9 +lib/libwiretap.so.11.0.10 lib/libwsutil.so lib/libwsutil.so.12 lib/libwsutil.so.12.0.0 Index: pkgsrc/net/wireshark/distinfo diff -u pkgsrc/net/wireshark/distinfo:1.149 pkgsrc/net/wireshark/distinfo:1.150 --- pkgsrc/net/wireshark/distinfo:1.149 Tue Oct 26 11:07:11 2021 +++ pkgsrc/net/wireshark/distinfo Tue Nov 23 22:12:01 2021 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.149 2021/10/26 11:07:11 nia Exp $ +$NetBSD: distinfo,v 1.150 2021/11/23 22:12:01 wiz Exp $ -BLAKE2s (wireshark-3.4.9.tar.xz) = e285fa567ea6f04ec20b4e181f74470a306c2fa2badc6d0f265b689eb425a465 -SHA512 (wireshark-3.4.9.tar.xz) = 479abcf7b44504a269b73201da5aabac0d7770cd779a325df3214b6df5dc37e175f2889165a933c2902001a06c8141768f35cd8ca35cc55fc6cf30a482ea27eb -Size (wireshark-3.4.9.tar.xz) = 32335284 bytes +BLAKE2s (wireshark-3.4.10.tar.xz) = f00837db4505983895738b8a5642af2873bd6bef1b9f144ae5813f1bac36c080 +SHA512 (wireshark-3.4.10.tar.xz) = 8a57d5279e9f3821b6ba3dceba89ad77fa8d0cf8cf421eab4d32e039497b429444c147b31abebd65b11b0b3ff73cf10d484480bcf0aedb206011819df8ab0257 +Size (wireshark-3.4.10.tar.xz) = 32344804 bytes SHA1 (patch-CMakeLists.txt) = 371f16d57fd6d33c2c1c8cb4f54cf3c16ca2afce --_----------=_1637705522153440--