head 1.2; access; symbols pkgsrc-2024Q3:1.1.0.2 pkgsrc-2024Q3-base:1.1; locks; strict; comment @// @; 1.2 date 2024.10.10.09.45.55; author adam; state dead; branches; next 1.1; commitid mhKtcITfOBDLa6tF; 1.1 date 2024.08.31.08.39.32; author adam; state Exp; branches; next ; commitid rYb7AZlgm9sI5XnF; desc @@ 1.2 log @wireshark: updated to 4.4.1 4.4.1 Bug Fixes The following vulnerabilities have been fixed: wnpa-sec-2024-12 ITS dissector crash. Issue 20026. wnpa-sec-2024-13 AppleTalk and RELOAD Framing dissector crashes. Issue 20114. The following bugs have been fixed: Refresh interface during live-capture leads to corrupt interface handling. Issue 11176. Media type "application/octet-stream" registered for both Thread and UASIP. Issue 14729. Extcap toolbar stops working when new interface is added. Issue 19854. Decoding error ITS CPM version 2.1.1. Issue 19886. Build error in 4.3.0: sync_pipe_run_command_actual error: argument 2 is null but the corresponding size argument 3 value is 512004 [-Werror=nonnull] Issue 19930. html2text.py doesn’t handle the tag. Issue 20020. Incorrect NetFlow v8 TOS AS aggregation dissection. Issue 20021. The Windows packages don’t ship with the IP address plugin. Issue 20030. O_PATH is Linux-and-FreeBSD-specific. Issue 20031. Wireshark 4.4.0 doesn’t install USBcap USBcapCMD.exe in the correct directory. Issue 20040. OER dissector is not considering the preamble if ASN.1 SEQUENCE definition includes extension marker but no OPTIONAL items. Issue 20044. Bluetooth classic L2CAP incorrect dissection with connectionless reception channel. Issue 20047. Profile auto switch filters : Grayed Display Filter Expression dialog box when opened from Configuration Profiles dialog box. Issue 20049. Wireshark 4.4.0 / macOS 14.6.1 wifi if monitor mode. Issue 20051. TECMP Data Type passes too much data to sub dissectors. Issue 20052. Wireshark and tshark 4.4.0 ignore extcap options specified on the command line. Issue 20054. Cannot open release notes due to incorrect path with duplicated directory components. Issue 20055. Unable to open "Release Notes" from the "Help" menu. Issue 20056. No capture interfaces if Wireshark is started from command line with certain paths. Issue 20057. Wireshark 4.4.0 extcap path change breaks third party extcap installers. Issue 20069. Fuzz job UTF-8 encoding issue: fuzz-2024-09-10-7618.pcap. Issue 20071. Unable to create larger files than 99 size units. Issue 20079. Opening Wireshark 4.4.0 on macOS 15.0 disconnects iPhone Mirroring. Issue 20082. PRP trailer not shown for L2 IEC 61850 GOOSE packets in 4.4.0 (was working in 4.2.7) Issue 20088. GUI lags because NetworkManager keeps turning 802.11 monitor mode off. Issue 20090. Error while getting Bluetooth application process id by Issue 20100. Fuzz job assertion: randpkt-2024-10-05-7200.pcap. Issue 20110. New and Updated Features The TShark syntax for dumping only fields with a certain prefix has changed from -G fields prefix to -G fields,prefix. This allows tshark -G fields to again support also specifying the configuration profile to use. @ text @$NetBSD: patch-ui_qt_utils_qt__ui__utils.cpp,v 1.1 2024/08/31 08:39:32 adam Exp $ Fix build. https://gitlab.com/wireshark/wireshark/-/issues/20031 --- ui/qt/utils/qt_ui_utils.cpp.orig 2024-08-31 08:25:52.306338124 +0000 +++ ui/qt/utils/qt_ui_utils.cpp @@@@ -246,7 +246,11 @@@@ void desktop_show_in_folder(const QStrin // If that failed, perhaps we are sandboxed. Try using Portal Services. // https://flatpak.github.io/xdg-desktop-portal/docs/doc-org.freedesktop.portal.OpenURI.html if (!success) { +#ifdef O_PATH const int fd = ws_open(QFile::encodeName(file_path), O_CLOEXEC | O_PATH, 0000); +#else + const int fd = ws_open(QFile::encodeName(file_path), O_CLOEXEC, 0000); +#endif if (fd != -1) { QDBusUnixFileDescriptor descriptor; descriptor.giveFileDescriptor(fd); @ 1.1 log @wireshark: updated to 4.4.0 Wireshark 4.4.0 Many improvements and fixes to the graphing dialogs, including I/O Graphs, Flow Graph / VoIP Calls, and TCP Stream Graphs. Wireshark now supports automatic profile switching. You can associate a display filter with a configuration profile, and when you open a capture file that matches the filter, Wireshark will automatically switch to that profile. Support for Lua 5.3 and 5.4 has been added, and support for Lua 5.1 and 5.2 has been removed. The Windows and macOS installers now ship with Lua 5.4.6. Improved display filter support for value strings (optional string representations for numeric fields). Display filter functions can be implemented as plugins, similar to protocol dissectors and file parsers. Display filters can be translated to pcap filters using Edit › Copy › Display filter as pcap filter if each display filter field has a corresponding pcap filter equivalent. Custom columns can be defined using any valid field expression, such as display filter functions, packet slices, arithmetic calculations, logical tests, raw byte addressing, and protocol layer modifiers. Custom output fields for tshark -e can also be defined using any valid field expression. Wireshark can be built with the zlib-ng instead of zlib for compressed file support. Zlib-ng is substantially faster than zlib. The official Windows and macOS packages include this feature. @ text @d1 1 a1 1 $NetBSD$ @