diff options
| -rw-r--r-- | ChangeLog | 813 | ||||
| -rw-r--r-- | NEWS | 292 | ||||
| -rw-r--r-- | docbook/release-notes.asciidoc | 2 |
3 files changed, 967 insertions, 140 deletions
@@ -1 +1,812 @@ -Last rev 51940 +------------------------------------------------------------------------ +r51940 | gerald | 2013-09-10 12:59:42 -0700 (Tue, 10 Sep 2013) | 2 lines +Changed paths: + M /trunk-1.10/ChangeLog + M /trunk-1.10/config.nmake + M /trunk-1.10/configure.ac + M /trunk-1.10/debian/changelog + M /trunk-1.10/docbook/asciidoc.conf + M /trunk-1.10/docbook/release-notes.asciidoc + M /trunk-1.10/epan/Makefile.am + M /trunk-1.10/make-version.pl + M /trunk-1.10/wiretap/Makefile.am + +1.10.2 → 1.10.3. + +------------------------------------------------------------------------ +r52057 | gerald | 2013-09-15 07:19:23 -0700 (Sun, 15 Sep 2013) | 1 line +Changed paths: + M /trunk-1.10/manuf + M /trunk-1.10/services + +[Automatic manuf, services and enterprise-numbers update for 2013-09-15] +------------------------------------------------------------------------ +r52170 | gerald | 2013-09-22 07:19:16 -0700 (Sun, 22 Sep 2013) | 1 line +Changed paths: + M /trunk-1.10/manuf + M /trunk-1.10/services + +[Automatic manuf, services and enterprise-numbers update for 2013-09-22] +------------------------------------------------------------------------ +r52173 | eapache | 2013-09-22 09:42:21 -0700 (Sun, 22 Sep 2013) | 3 lines +Changed paths: + M /trunk-1.10/epan/dissectors/packet-gluster.h + M /trunk-1.10/epan/dissectors/packet-glusterfs.c + +Manual backport of r52142 and r52144 to fix collision between gluster defines +and system header dirent.h + +------------------------------------------------------------------------ +r52195 | eapache | 2013-09-23 16:17:22 -0700 (Mon, 23 Sep 2013) | 11 lines +Changed paths: + M /trunk-1.10/epan/reassemble.c + +Replace r51826 with a slightly different backport fix for +https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9027 +that doesn't leak memory. I thought the leaks would be pretty minor and not +worth worrying about, but +https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9169 +showed otherwise. + +Major thanks to Jakub for figuring out we could create a dummy TVB hooked up to +the parent, even though the 1.10 reassembly code doesn't know about the real +child TVB. + +------------------------------------------------------------------------ +r52239 | guy | 2013-09-28 10:47:01 -0700 (Sat, 28 Sep 2013) | 9 lines +Changed paths: + M /trunk-1.10 + M /trunk-1.10/wiretap/pcapng.c + +Copy over r52238 from trunk: + + ------------------------------------------------------------------------ + r52238 | guy | 2013-09-28 10:44:50 -0700 (Sat, 28 Sep 2013) | 4 lines + + There's no interface ID in a Simple Packet Block. + + Fixes one problem found by the file in bug 9200. + +------------------------------------------------------------------------ +r52242 | guy | 2013-09-28 11:05:36 -0700 (Sat, 28 Sep 2013) | 17 lines +Changed paths: + M /trunk-1.10 + M /trunk-1.10/wiretap/pcapng.c + +Copy over r52241 from trunk, with manual intervention: + + ------------------------------------------------------------------------ + r52241 | guy | 2013-09-28 11:03:20 -0700 (Sat, 28 Sep 2013) | 12 lines + + In a Simple Packet Block, the captured length isn't the block length + minus the lengths of the two length fields and the packet length field, + it's the minimum of that and the packet length, as there might be + padding. + + Fixes one problem found by the file in bug 9200. + + While we're at it, pcapng_read_packet_block() and + pcapng_read_simple_packet_block() return an integer, not a Boolean; + return 0, not FALSE (they have the same value, but returning 0 makes it + clearer that the return value isn't restricted to TRUE or FALSE). + +------------------------------------------------------------------------ +r52245 | guy | 2013-09-28 11:26:27 -0700 (Sat, 28 Sep 2013) | 11 lines +Changed paths: + M /trunk-1.10 + M /trunk-1.10/wiretap/pcapng.c + +Copy over r52244 from trunk: + + ------------------------------------------------------------------------ + r52244 | guy | 2013-09-28 11:25:07 -0700 (Sat, 28 Sep 2013) | 6 lines + + Correctly calculate the captured length in a Simple Packet Block - + subtract out the minimum SPB size, which includes the length of + *everything* except for the packet data. + + Fixes one problem found by the file in bug 9200. + +------------------------------------------------------------------------ +r52248 | guy | 2013-09-28 12:27:19 -0700 (Sat, 28 Sep 2013) | 9 lines +Changed paths: + M /trunk-1.10 + M /trunk-1.10/wiretap/pcapng.c + +Copy over r52247 from trunk: + + ------------------------------------------------------------------------ + r52247 | guy | 2013-09-28 12:26:23 -0700 (Sat, 28 Sep 2013) | 4 lines + + Fix cut-and-pasteo. + + Finishes the fix for bug 9200. + +------------------------------------------------------------------------ +r52251 | guy | 2013-09-28 13:11:11 -0700 (Sat, 28 Sep 2013) | 15 lines +Changed paths: + M /trunk-1.10 + M /trunk-1.10/wiretap/pcapng.c + +Copy over r52250 from trunk: + + ------------------------------------------------------------------------ + r52250 | guy | 2013-09-28 13:08:39 -0700 (Sat, 28 Sep 2013) | 10 lines + + Actually, the captured length must be the minimum of: + + the number of bytes available for packet data in the block; + + the packet length; + + *and* the snapshot length for the interface. + + One more fix for bug 9200, so it should *now* be fixed. + +------------------------------------------------------------------------ +r52254 | guy | 2013-09-28 14:07:52 -0700 (Sat, 28 Sep 2013) | 8 lines +Changed paths: + M /trunk-1.10 + M /trunk-1.10/wiretap/pcapng.c + +Copy over r52253 from trunk: + + ------------------------------------------------------------------------ + r52253 | guy | 2013-09-28 14:06:17 -0700 (Sat, 28 Sep 2013) | 3 lines + + The pcap-ng spec says the captured length is the minimum of the + interface snapshot length and the packet length; make it so. + +------------------------------------------------------------------------ +r52258 | guy | 2013-09-28 14:30:38 -0700 (Sat, 28 Sep 2013) | 6 lines +Changed paths: + M /trunk-1.10/docbook/release-notes.asciidoc + +Mention bug 9200 being fixed. + +Make the sample "The following bugs have been fixed:" entry match the +syntax used in actual release notes we've shipped (putting the buglist +link in parentheses). + +------------------------------------------------------------------------ +r52263 | eapache | 2013-09-29 05:22:40 -0700 (Sun, 29 Sep 2013) | 15 lines +Changed paths: + M /trunk-1.10 + M /trunk-1.10/ui/gtk/addr_resolution_dlg.c + M /trunk-1.10/ui/gtk/bytes_view.c + M /trunk-1.10/ui/gtk/capture_dlg.c + +Copy over revision from trunk: + + ------------------------------------------------------------------------ + r50915 | wmeier | 2013-07-26 12:19:00 -0400 (Fri, 26 Jul 2013) | 2 lines + Changed paths: + M /trunk/ui/gtk/addr_resolution_dlg.c + M /trunk/ui/gtk/bytes_view.c + M /trunk/ui/gtk/capture_dlg.c + + gtk_widget_modify_font() has been renamed to gtk_widget_override_font() in GTK3 + + ------------------------------------------------------------------------ + +Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9201 + +------------------------------------------------------------------------ +r52266 | gerald | 2013-09-29 07:19:18 -0700 (Sun, 29 Sep 2013) | 1 line +Changed paths: + M /trunk-1.10/manuf + +[Automatic manuf, services and enterprise-numbers update for 2013-09-29] +------------------------------------------------------------------------ +r52325 | guy | 2013-10-01 14:55:19 -0700 (Tue, 01 Oct 2013) | 3 lines +Changed paths: + M /trunk-1.10/packaging/macosx/Read_me_first.rtf + +We install the wrapper scripts for the command-line tools in +/usr/local/bin, not in /Library/Wireshark. + +------------------------------------------------------------------------ +r52401 | gerald | 2013-10-06 07:19:26 -0700 (Sun, 06 Oct 2013) | 1 line +Changed paths: + M /trunk-1.10/manuf + +[Automatic manuf, services and enterprise-numbers update for 2013-10-06] +------------------------------------------------------------------------ +r52444 | eapache | 2013-10-07 16:38:07 -0700 (Mon, 07 Oct 2013) | 5 lines +Changed paths: + M /trunk-1.10/epan/dissectors/packet-btsdp.c + +The trunk fix for https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9232 is +not easily backportable because wmem_strbuf is not fully implemented in 1.10. +Instead, fix it by making sure that if our manual string-counter does overflow +past the end of the buffer, we reset it back. + +------------------------------------------------------------------------ +r52465 | pascal | 2013-10-09 09:08:39 -0700 (Wed, 09 Oct 2013) | 9 lines +Changed paths: + M /trunk-1.10/epan/dissectors/packet-wccp.c + +Copy over manually from the trunk: +------------------------------------------------------------------------ +r52464 | pascal | 2013-10-09 18:07:24 +0200 (mer., 09 oct. 2013) | 3 lines + +From Peter Van Eynde via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9252 : +Fix WCCP fix hash buckets assignment info decoding + +------------------------------------------------------------------------ + +------------------------------------------------------------------------ +r52490 | eapache | 2013-10-10 06:08:02 -0700 (Thu, 10 Oct 2013) | 21 lines +Changed paths: + M /trunk-1.10 + M /trunk-1.10/epan/dissectors/packet-openwire.c + +Copy over from trunk to pacify the fuzzbot and so Michael's patch backports +cleanly + + ------------------------------------------------------------------------ + r52458 | eapache | 2013-10-08 19:16:53 -0400 (Tue, 08 Oct 2013) | 10 lines + Changed paths: + M /trunk/epan/dissectors/packet-openwire.c + + Hacky fix for https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9248 + Just break out of the loop if offset doesn't go up. + + There's almost certainly a better fix - the dissector is weird, and I'm not sure + if all the _length_remaining() checks are important or legacy, and what affect + they have on this issue. + + At the very least this will pacify the fuzzbots until somebody has time to + figure it out properly. + + ------------------------------------------------------------------------ + + +------------------------------------------------------------------------ +r52507 | cmaynard | 2013-10-10 12:50:30 -0700 (Thu, 10 Oct 2013) | 3 lines +Changed paths: + M /trunk-1.10/Makefile.nmake + M /trunk-1.10/docbook/release-notes.asciidoc + M /trunk-1.10/ui/gtk/Makefile.nmake + M /trunk-1.10/ui/gtk/follow_tcp.c + +Revert the changes made to resolve https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3528 (When following an HTTP tcp stream decode gzip data automatically), as they caused a bigger problem reported in https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9044 ("Follow TCP Stream" shows only first HTTP req+res). + + +------------------------------------------------------------------------ +r52546 | morriss | 2013-10-11 11:06:59 -0700 (Fri, 11 Oct 2013) | 10 lines +Changed paths: + M /trunk-1.10 + M /trunk-1.10/epan/dissectors/packet-rohc.c + +Copy over from the trunk: + + ------------------------------------------------------------------------ + r51404 | martinm | 2013-08-17 13:52:13 -0400 (Sat, 17 Aug 2013) | 2 lines + Changed paths: + M /trunk/epan/dissectors/packet-rohc.c + + Squelch a (bogus) warning about next_tvb being unused initialised. + ------------------------------------------------------------------------ + +------------------------------------------------------------------------ +r52585 | gerald | 2013-10-13 07:19:19 -0700 (Sun, 13 Oct 2013) | 1 line +Changed paths: + M /trunk-1.10/manuf + M /trunk-1.10/services + +[Automatic manuf, services and enterprise-numbers update for 2013-10-13] +------------------------------------------------------------------------ +r52713 | gerald | 2013-10-20 07:19:17 -0700 (Sun, 20 Oct 2013) | 1 line +Changed paths: + M /trunk-1.10/manuf + +[Automatic manuf, services and enterprise-numbers update for 2013-10-20] +------------------------------------------------------------------------ +r52753 | mmann | 2013-10-21 19:16:09 -0700 (Mon, 21 Oct 2013) | 4 lines +Changed paths: + M /trunk-1.10/epan/dissectors/packet-opensafety.c + +openSAFETY: Fixing rare crash as well as dissector errors. Bug 9314 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9314) Patch specifically from 1.10 branch. + +From Roland Knall + +------------------------------------------------------------------------ +r52786 | mmann | 2013-10-23 06:35:18 -0700 (Wed, 23 Oct 2013) | 3 lines +Changed paths: + M /trunk-1.10/epan/dissectors/packet-iec104.c + +IEC 60870-5-104 CP56Time dissolve bug. Bug 9178 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9178) + +This is the "bugfix only" version of the patch for backporting. +------------------------------------------------------------------------ +r52891 | gerald | 2013-10-27 07:19:23 -0700 (Sun, 27 Oct 2013) | 1 line +Changed paths: + M /trunk-1.10/epan/dissectors/usb.c + M /trunk-1.10/manuf + M /trunk-1.10/services + +[Automatic manuf, services and enterprise-numbers update for 2013-10-27] +------------------------------------------------------------------------ +r52954 | gerald | 2013-10-29 10:57:22 -0700 (Tue, 29 Oct 2013) | 18 lines +Changed paths: + M /trunk-1.10 + M /trunk-1.10/docbook/release-notes.asciidoc + M /trunk-1.10/epan/dissectors/packet-ieee802154.c + +Copy over r52036 from the trunk: + + ------------------------------------------------------------------------ + r52036 | eapache | 2013-09-14 06:15:31 -0700 (Sat, 14 Sep 2013) | 8 lines + Changed paths: + M /trunk/epan/dissectors/packet-ieee802154.c + + _lookup_extended takes a pointer to the key-pointer since it has to set the old + key pointer value. _insert just takes the key-pointer, not a pointer to it. + Passing a pointer-to-a-pointer causes the outer pointer to be dereferenced as a + struct (when it in fact points to a pointer to struct) and leads to incorrect + behaviour and uninitialized/out-of-bounds memory accesses. + + Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9139 + ------------------------------------------------------------------------ + +Update the release notes. + +------------------------------------------------------------------------ +r52957 | gerald | 2013-10-29 11:46:43 -0700 (Tue, 29 Oct 2013) | 14 lines +Changed paths: + M /trunk-1.10/asn1/nbap/nbap.cnf + M /trunk-1.10/asn1/nbap/packet-nbap-template.c + M /trunk-1.10/docbook/release-notes.asciidoc + M /trunk-1.10/epan/dissectors/packet-nbap.c + +Copy over r52154 by hand: + + ------------------------------------------------------------------------ + r52154 | etxrab | 2013-09-20 07:19:31 -0700 (Fri, 20 Sep 2013) | 1 line + Changed paths: + M /trunk/asn1/nbap/nbap.cnf + M /trunk/asn1/nbap/packet-nbap-template.c + M /trunk/epan/dissectors/packet-nbap.c + + DCH-ID can be 255 + ------------------------------------------------------------------------ + +Update the release notes. + +------------------------------------------------------------------------ +r52959 | gerald | 2013-10-29 11:59:13 -0700 (Tue, 29 Oct 2013) | 13 lines +Changed paths: + M /trunk-1.10 + M /trunk-1.10/docbook/release-notes.asciidoc + M /trunk-1.10/epan/dissectors/packet-sip.c + +Copy over r52354 from the trunk: + + ------------------------------------------------------------------------ + r52354 | pascal | 2013-10-04 03:29:57 -0700 (Fri, 04 Oct 2013) | 3 lines + Changed paths: + M /trunk/epan/dissectors/packet-sip.c + + Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9228 : + Ensure that decompressed tvb exists before trying to add it to the tree + ------------------------------------------------------------------------ + +Update the release notes. + +------------------------------------------------------------------------ +r52961 | gerald | 2013-10-29 12:55:40 -0700 (Tue, 29 Oct 2013) | 14 lines +Changed paths: + M /trunk-1.10/docbook/release-notes.asciidoc + M /trunk-1.10/epan/dissectors/packet-tcp.c + +Copy over r52570 with manual intervention: + + ------------------------------------------------------------------------ + r52570 | cmaynard | 2013-10-12 11:03:34 -0700 (Sat, 12 Oct 2013) | 4 lines + Changed paths: + M /trunk/epan/dissectors/packet-tcp.c + + Don't assume that tvb_length_remaining() or tvb_reported_length_remaining() always return a value >= 0. Part of fix for https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9263 + + #BACKPORT(1.10,1.8) + ------------------------------------------------------------------------ + +Update the release notes. + +------------------------------------------------------------------------ +r52968 | gerald | 2013-10-29 14:40:26 -0700 (Tue, 29 Oct 2013) | 57 lines +Changed paths: + M /trunk-1.10 + M /trunk-1.10/diameter/dictionary.xml + M /trunk-1.10/docbook/release-notes.asciidoc + M /trunk-1.10/epan/dissectors/packet-bssgp.c + M /trunk-1.10/epan/dissectors/packet-enip.c + M /trunk-1.10/epan/dissectors/packet-ieee802154.c + M /trunk-1.10/ui/win32/print_win32.c + +Copy over revisions from the trunk: + + ------------------------------------------------------------------------ + r51942 | pascal | 2013-09-10 14:18:28 -0700 (Tue, 10 Sep 2013) | 3 lines + Changed paths: + M /trunk/diameter/dictionary.xml + + From Philippe Rosenfeld via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9126 : + Fix the value of 'SEND_TO_UE' in the DIAMETER Gx dictionary for Packet-Filter-Usage AVP + ------------------------------------------------------------------------ + r51919 | etxrab | 2013-09-09 23:32:41 -0700 (Mon, 09 Sep 2013) | 7 lines + Changed paths: + M /trunk/epan/dissectors/packet-ieee802154.c + + From Selvamegala: + + GTS starting slot in the Beacon frame is not parsed correctly. As per the Spec, in the 3byte gts descriptor value bit 0- 15 refers Device Short address bit 16-19 – Starting slot bit 20-23 – GTS length. + + (I Dug out the onliner from the attached file) + + https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8946 + ------------------------------------------------------------------------ + r52131 | pascal | 2013-09-17 14:56:35 -0700 (Tue, 17 Sep 2013) | 3 lines + Changed paths: + M /trunk/epan/dissectors/packet-bssgp.c + + From Jason Wzhy via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9157 : + BSSGP: Fix dissection of Trace Type IE in SGSN-INVOKE-TRACE message + ------------------------------------------------------------------------ + r52157 | mmann | 2013-09-20 11:35:10 -0700 (Fri, 20 Sep 2013) | 4 lines + Changed paths: + M /trunk/epan/dissectors/packet-enip.c + + Bugfix a few items: + + 1. Correct Interface Flag enumeration + 2. Dissect ARP data without making it look like its an ARP packet by disabling column writing. + ------------------------------------------------------------------------ + r52215 | mmann | 2013-09-25 12:13:10 -0700 (Wed, 25 Sep 2013) | 3 lines + Changed paths: + M /trunk/epan/dissectors/packet-enip.c + + Minor correction to dissection of DLR frames in Ethernet/IP dissector. Bug 9186 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9186) + + From Joakim Wiberg + ------------------------------------------------------------------------ + r52221 | cmaynard | 2013-09-26 10:27:53 -0700 (Thu, 26 Sep 2013) | 4 lines + Changed paths: + M /trunk/ui/win32/print_win32.c + + When a line of text wraps to the next line, the character that caused the line to wrap was not being printed. + + #BACKPORT(1.10,1.8) + ------------------------------------------------------------------------ + +Update the release notes. + +------------------------------------------------------------------------ +r52970 | gerald | 2013-10-29 14:58:59 -0700 (Tue, 29 Oct 2013) | 49 lines +Changed paths: + M /trunk-1.10 + M /trunk-1.10/docbook/release-notes.asciidoc + M /trunk-1.10/epan/dissectors/packet-dvb-s2-bb.c + M /trunk-1.10/epan/dissectors/packet-rtp.c + M /trunk-1.10/epan/dissectors/packet-xmpp.c + M /trunk-1.10/plugins/wimax/packet-wmx.c + +Copy over revisions from the trunk: + + ------------------------------------------------------------------------ + r52330 | pascal | 2013-10-02 08:33:00 -0700 (Wed, 02 Oct 2013) | 3 lines + Changed paths: + M /trunk/epan/dissectors/packet-rtp.c + + From Pavel via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9204 : + Fix parsing of padding in RTP header extension + ------------------------------------------------------------------------ + r52338 | pascal | 2013-10-02 12:59:35 -0700 (Wed, 02 Oct 2013) | 3 lines + Changed paths: + M /trunk/epan/dissectors/packet-dvb-s2-bb.c + + From Audric Schiltknecht via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9218 : + Fix typo in MODCOD list of DVB-S2 dissector + ------------------------------------------------------------------------ + r50272 | morriss | 2013-06-30 16:25:37 -0700 (Sun, 30 Jun 2013) | 17 lines + Changed paths: + M /trunk/epan/dissectors/packet-xmpp.c + + From David Richards via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8871 : + + TLS decryption fails when trying to decrypt XMPP sessions using start_tls as + the port in the key list of the SSL preferences. + + Looking at the code, the XMPP dissector has 2 issues: + + 1) The crude XML element detection for XMPP segmentation is run before + checking if the SSL dissector should be called. As a result, the SSL dissector + is not called at the appropriate times. + + 2) The SSL dissector is called withoug resetting the desegment flags are not + manipulated as the SMTP dissector does so segmented SSL packets are not properly + reconstructed. Generally this causes the server hello not to be detected. + + A proposed patch to fix these issues is attached. + ------------------------------------------------------------------------ + r52209 | mmann | 2013-09-24 14:06:05 -0700 (Tue, 24 Sep 2013) | 3 lines + Changed paths: + M /trunk/plugins/wimax/packet-wmx.c + + Prevent crashing as a result of tree removal in r52208. Tree removal + this patch should be the "quick" fix to bug 5349 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5349). I knew the tree check was preventing some dissection/column data/etc, but from the comments in bug 5349, the tree check was also protecting this (and maybe other) crashes (due to missed NULL checking). + + I want to follow up with some massive cleanup (remove PITEM_FINFO calls), but this with r52208 should be good enough to backport to 1.8 and 1.10 to fix bug 5349. Cleanup shouldn't need to be backported. + ------------------------------------------------------------------------ + +Update the release notes. + +------------------------------------------------------------------------ +r52973 | gerald | 2013-10-29 15:19:18 -0700 (Tue, 29 Oct 2013) | 71 lines +Changed paths: + M /trunk-1.10 + M /trunk-1.10/AUTHORS + M /trunk-1.10/asn1/h225/h225.cnf + M /trunk-1.10/debian/control + M /trunk-1.10/debian/rules + M /trunk-1.10/docbook/release-notes.asciidoc + M /trunk-1.10/epan/dissectors/packet-3g-a11.c + M /trunk-1.10/epan/dissectors/packet-h225.c + M /trunk-1.10/epan/dissectors/packet-mq.c + M /trunk-1.10/epan/dissectors/packet-ptp.c + M /trunk-1.10/tshark.c + M /trunk-1.10/ui/gtk/capture_dlg.c + +Copy over revisions from the trunk: + + ------------------------------------------------------------------------ + r52403 | mmann | 2013-10-06 08:38:32 -0700 (Sun, 06 Oct 2013) | 3 lines + Changed paths: + M /trunk/AUTHORS + M /trunk/epan/dissectors/packet-3g-a11.c + + Improve "eHRPD Indicator" NVSE dissection in 3GPP2 A11 Registration Request. Bug 9206 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9206) + + From Masayuki Takemura + ------------------------------------------------------------------------ + r52493 | morriss | 2013-10-10 07:53:19 -0700 (Thu, 10 Oct 2013) | 8 lines + Changed paths: + M /trunk/tshark.c + + Fix the core dump reported in https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9258 : + + After calling wtap_close(), set the wth to NULL so we don't try to close it + again later. (The core only happens when tshark isn't keeping up with dumpcap's + file rotation.) + + Wireshark still has a problem but it's a different one. + ------------------------------------------------------------------------ + r52512 | morriss | 2013-10-10 13:23:59 -0700 (Thu, 10 Oct 2013) | 4 lines + Changed paths: + M /trunk/ui/gtk/capture_dlg.c + + Don't close the Capture Options window if there was an error in what was + selected (and we're not going to start capturing). That way the user can fix + whatever was wrong without having to re-open the dialog. + ------------------------------------------------------------------------ + r52566 | pascal | 2013-10-12 07:05:32 -0700 (Sat, 12 Oct 2013) | 3 lines + Changed paths: + M /trunk/epan/dissectors/packet-ptp.c + + From Todd Newton via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9262 : + Fix dissection of PTP Management messages + ------------------------------------------------------------------------ + + +Copy over with manual intervention: + + ------------------------------------------------------------------------ + r52404 | mmann | 2013-10-06 08:51:31 -0700 (Sun, 06 Oct 2013) | 3 lines + Changed paths: + M /trunk/epan/dissectors/packet-mq.c + + WebSphere MQ V7 Bug Fix 8322 TSHM_EBCDIC. Bug 9198 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9198) + + From Ed Beroset. + ------------------------------------------------------------------------ + r52773 | rbalint | 2013-10-22 15:33:05 -0700 (Tue, 22 Oct 2013) | 1 line + Changed paths: + M /trunk/debian/control + M /trunk/debian/rules + + Generate wsicon32.xpm during building Debian package + ------------------------------------------------------------------------ + r52659 | kukosa | 2013-10-17 04:24:43 -0700 (Thu, 17 Oct 2013) | 1 line + Changed paths: + M /trunk/asn1/h225/h225.cnf + M /trunk/epan/dissectors/packet-h225.c + M /trunk/epan/dissectors/packet-h225.h + + H.225.0: fix handling of compound parameters in Generic Extensible Framework (H.460.22 did not work well) + ------------------------------------------------------------------------ + + +Update the release notes. + +------------------------------------------------------------------------ +r52974 | gerald | 2013-10-29 15:55:21 -0700 (Tue, 29 Oct 2013) | 90 lines +Changed paths: + M /trunk-1.10 + M /trunk-1.10/docbook/release-notes.asciidoc + M /trunk-1.10/epan/dissectors/packet-dcerpc-ndr.c + M /trunk-1.10/epan/dissectors/packet-dcerpc-nt.c + M /trunk-1.10/epan/dissectors/packet-dcerpc.c + M /trunk-1.10/epan/dissectors/packet-dns.c + M /trunk-1.10/epan/dissectors/packet-eth.c + M /trunk-1.10/epan/dissectors/packet-ethertype.c + M /trunk-1.10/epan/stats_tree.c + M /trunk-1.10/plugins/stats_tree/pinfo_stats_tree.c + M /trunk-1.10/tshark.c + M /trunk-1.10/ui/gtk/uat_gui.c + +Copy over revisions from the trunk: + + ------------------------------------------------------------------------ + r52662 | mmann | 2013-10-17 13:54:42 -0700 (Thu, 17 Oct 2013) | 3 lines + Changed paths: + M /trunk/epan/dissectors/packet-dns.c + + Bugfix an apparent typo in edns0 "Higher bits in extended RCODE". Bug 9199 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9199). + + #BACKPORT(1.10) + ------------------------------------------------------------------------ + r52679 | mmann | 2013-10-18 14:17:01 -0700 (Fri, 18 Oct 2013) | 5 lines + Changed paths: + M /trunk/epan/stats_tree.c + M /trunk/plugins/stats_tree/pinfo_stats_tree.c + + Don't allow invalid ranges to be specified for the stats tree. Bug 9130 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9130) + + Not sure which memory allocation should be used here (using wmem caused crash), but this revision can at least be easily backported to 1.10 where the bug was reported. + + Also allow a single number to be used in the stats range since it's considered a valid "range" by the UAT. + ------------------------------------------------------------------------ + r52357 | martink | 2013-10-04 05:52:36 -0700 (Fri, 04 Oct 2013) | 5 lines + Changed paths: + M /trunk/ui/gtk/uat_gui.c + + in a uat dialogue, allow only one popup for confirming a deletion of an + element + + this should at least partially fix bug 9129 + ------------------------------------------------------------------------ + r52683 | mmann | 2013-10-18 19:45:01 -0700 (Fri, 18 Oct 2013) | 3 lines + Changed paths: + M /trunk/ui/gtk/uat_gui.c + + Only allow one popup dialog in UAT dialog. Editing/copying/deleting can modify the uat list and other open dialogs will not be aware of it and lead to unexpected behavior (including crashes). Fixes bug 9129 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9129) + + #BACKPORT(1.10) + ------------------------------------------------------------------------ + r52733 | mmann | 2013-10-21 08:46:13 -0700 (Mon, 21 Oct 2013) | 3 lines + Changed paths: + M /trunk/epan/dissectors/packet-dcerpc-ndr.c + + Fix padding bytes overlapping due to NDR alignment. Bug 9300 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9300) + + From Matthieu Patou + ------------------------------------------------------------------------ + r52734 | mmann | 2013-10-21 08:50:23 -0700 (Mon, 21 Oct 2013) | 3 lines + Changed paths: + M /trunk/epan/dissectors/packet-dcerpc-nt.c + + Datablob size is NDR64/32 dependant. Bug 9301 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9301). + + From Matthieu Patou + ------------------------------------------------------------------------ + r52735 | mmann | 2013-10-21 08:58:52 -0700 (Mon, 21 Oct 2013) | 1 line + Changed paths: + M /trunk/epan/dissectors/packet-dcerpc-nt.c + + Fix compile errors introduced in r52734. + ------------------------------------------------------------------------ + r52736 | mmann | 2013-10-21 09:00:37 -0700 (Mon, 21 Oct 2013) | 3 lines + Changed paths: + M /trunk/epan/dissectors/packet-dcerpc.c + + dce-rpc: properly dissect multiple PDU in the same packet. Bug 9302 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9302). + + From Matthieu Patou + ------------------------------------------------------------------------ + r52738 | cmaynard | 2013-10-21 10:31:22 -0700 (Mon, 21 Oct 2013) | 4 lines + Changed paths: + M /trunk/epan/dissectors/packet-eth.c + M /trunk/epan/dissectors/packet-ethertype.c + + Remove if (fh_tree) checks as add_ethernet_trailer() calls such functions as dissector_try_heuristic(), expert_add_info(), and col_append_str(), which all need to be called whether fh_tree is NULL or not. + + #BACKPORT(1.10,1.8) + ------------------------------------------------------------------------ + r52838 | cmaynard | 2013-10-25 05:51:16 -0700 (Fri, 25 Oct 2013) | 4 lines + Changed paths: + M /trunk/tshark.c + + Display the frame number on the packet summary line if it's one of the configured columns. Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9317 + + #BACKPORT(1.10,1.8) + ------------------------------------------------------------------------ + + +Update the release notes. + +------------------------------------------------------------------------ +r52995 | gerald | 2013-10-30 18:08:27 -0700 (Wed, 30 Oct 2013) | 2 lines +Changed paths: + M /trunk-1.10/docbook/asciidoc.conf + +Fix up some macros. + +------------------------------------------------------------------------ +r52997 | gerald | 2013-10-30 18:12:02 -0700 (Wed, 30 Oct 2013) | 2 lines +Changed paths: + M /trunk-1.10/docbook/release-notes.asciidoc + +Use the right markup for bug links. + +------------------------------------------------------------------------ +r53018 | gerald | 2013-11-01 09:11:02 -0700 (Fri, 01 Nov 2013) | 16 lines +Changed paths: + M /trunk-1.10/docbook/release-notes.asciidoc + +Copy over r52732 from the trunk. This appears to be in response to r52213 and +wmemification in the trunk, neither of which have been backported yet. The extra +check doesn't hurt, however. + + ------------------------------------------------------------------------ + r52732 | mmann | 2013-10-21 08:39:07 -0700 (Mon, 21 Oct 2013) | 3 lines + Changed paths: + M /trunk/epan/dissectors/packet-ntlmssp.c + + NULL check ref_nt_challenge_response and ref_lm_challenge_response. Bug 9299 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9299) + + From Matthieu Patou + ------------------------------------------------------------------------ + +Update the release notes. + +------------------------------------------------------------------------ +r53020 | gerald | 2013-11-01 09:24:42 -0700 (Fri, 01 Nov 2013) | 31 lines +Changed paths: + M /trunk-1.10 + M /trunk-1.10/docbook/release-notes.asciidoc + M /trunk-1.10/epan/dissectors/packet-btsdp.c + M /trunk-1.10/epan/dissectors/packet-irc.c + M /trunk-1.10/epan/packet.c + +Copy over revisions from the trunk: + + ------------------------------------------------------------------------ + r52977 | eapache | 2013-10-29 18:42:11 -0700 (Tue, 29 Oct 2013) | 6 lines + Changed paths: + M /trunk/epan/packet.c + + When adding an entry to a dissector string table, take a copy of the pattern + string (and pass g_free to g_hash_table_new_full to free it). + + This means callers don't have to worry about the scope of the memory they pass + in, and fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9296 + ------------------------------------------------------------------------ + r52859 | mmann | 2013-10-25 17:36:16 -0700 (Fri, 25 Oct 2013) | 3 lines + Changed paths: + M /trunk/epan/dissectors/packet-btsdp.c + + Bluetooth: SDP: Fix PBAP features presentation. Bug 9327 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9327) + + From Michal Labedzki + ------------------------------------------------------------------------ + r53016 | pascal | 2013-11-01 08:48:57 -0700 (Fri, 01 Nov 2013) | 3 lines + Changed paths: + M /trunk/epan/dissectors/packet-irc.c + + From Peter Wu via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9360 : + Fix IRC response command filter + ------------------------------------------------------------------------ + +Update the release notes. + +------------------------------------------------------------------------ @@ -1,4 +1,4 @@ - Wireshark 1.10.2 Release Notes + Wireshark 1.10.3 Release Notes __________________________________________________________ What is Wireshark? @@ -13,74 +13,77 @@ What's New Bug Fixes The following vulnerabilities have been fixed. - * [1]wnpa-sec-2013-54 - The Bluetooth HCI ACL dissector could crash. Discovered by - Laurent Butti. ([2]Bug 8827) - Versions affected: 1.10.0 to 1.10.1 - * [3]wnpa-sec-2013-55 + * [1]wnpa-sec-2013-61 + The IEEE 802.15.4 dissector could crash. ([2]Bug 9139) + Versions affected: 1.10.0 to 1.10.2, 1.8.0 to 1.8.10 + [3]CVE-2013-6336 + * [4]wnpa-sec-2013-62 The NBAP dissector could crash. Discovered by Laurent - Butti. ([4]Bug 9005) - Versions affected: 1.10.0 to 1.10.1, 1.8.0 to 1.8.9 - * [5]wnpa-sec-2013-56 - The ASSA R3 dissector could go into an infinite loop. - Discovered by Ben Schmidt. ([6]Bug 9020) - Versions affected: 1.10.0 to 1.10.1, 1.8.0 to 1.8.9 - * [7]wnpa-sec-2013-57 - The RTPS dissector could overflow a buffer. Discovered by - Ben Schmidt. ([8]Bug 9019) - Versions affected: 1.10.0 to 1.10.1, 1.8.0 to 1.8.9 - * [9]wnpa-sec-2013-58 - The MQ dissector could crash. ([10]Bug 9079) - Versions affected: 1.10.0 to 1.10.1, 1.8.0 to 1.8.9 - * [11]wnpa-sec-2013-59 - The LDAP dissector could crash. Versions affected: 1.10.0 - to 1.10.1, 1.8.0 to 1.8.9 - * [12]wnpa-sec-2013-60 - The Netmon file parser could crash. Discovered by G. - Geshev. ([13]Bug 8742) - Versions affected: 1.10.0 to 1.10.1, 1.8.0 to 1.8.9 + Butti. ([5]Bug 9168) + Versions affected: 1.10.0 to 1.10.2, 1.8.0 to 1.8.10 + [6]CVE-2013-6337 + * [7]wnpa-sec-2013-63 + The SIP dissector could crash. ([8]Bug 9228) + Versions affected: 1.10.0 to 1.10.2, 1.8.0 to 1.8.10 + [9]CVE-2013-6338 + * [10]wnpa-sec-2013-64 + The OpenWire dissector could go into a large loop. + Discovered by Murali. ([11]Bug 9248) + Versions affected: 1.10.0 to 1.10.2, 1.8.0 to 1.8.10 + [12]CVE-2013-6339 + * [13]wnpa-sec-2013-65 + The TCP dissector could crash. ([14]Bug 9263) + Versions affected: 1.10.0 to 1.10.2, 1.8.0 to 1.8.10 + [15]CVE-2013-6340 The following bugs have been fixed: - * Lua ByteArray:append() causes wireshark crash. ([14]Bug - 4461) - * Lua script can not get "data-text-lines" protocol data. - ([15]Bug 5200) - * Lua: Trying to use Field.new("tcp.segments") to get - reassembled TCP data is failed. ([16]Bug 5201) - * "Edit Interface Settings": "Capture Filter" combo box is - not populated across Wireshark sessions. ([17]Bug 7278) - * PER normally small non-negative whole number decoding is - wrong when >= 64. ([18]Bug 8841) - * Strange behavior of tree expand/collapse in packet details. - ([19]Bug 8908) - * Incorrect parsing of IPFIX *IpTotalLength elements. - ([20]Bug 8918) - * IO graph/advanced, max/min/summ error on frames with - multiple Diameter messages. ([21]Bug 8980) - * pod2man error on reordercap.pod. ([22]Bug 8982) - * SGI Nsym disambiguation is unconditionally displayed when - dissecting VHT. ([23]Bug 8989) - * The Wireshark icon doesn't show up in OS X 10.5. ([24]Bug - 8993) - * Build fails if system Python is version 3+. ([25]Bug 8995) - * SCSI dissector does not parse PERSISTENT RESERVE commands - correctly. ([26]Bug 9012) - * SDP messages throws an assert. ([27]Bug 9022) - * Wireshark fails to decode single-line, multiple Contact: - URIs in SIP responses. ([28]Bug 9031) - * PN_MRP LinkUp Message is shown as LinkDown in info. - ([29]Bug 9035) - * Dissector for EtherCAT: ADS highlighting in the Packet - Bytes Pane is incorrect. ([30]Bug 9036) - * 802.11 HT Extended Capabilities B10 decode incorrect. - ([31]Bug 9038) - * Wrong dissection of MSTI Root Identifiers for all MSTIs. - ([32]Bug 9088) - * Weird malformed HTTP error. ([33]Bug 9101) - * Warning for attempting to install 64-bit Wireshark on a - 32-bit machine has an embedded "\n". ([34]Bug 9103) - * Wireshark crashes when using "Export Specified Packets" > - "Displayed". ([35]Bug 9106) + * new_packet_list: EAP-TLS reassemble does not happen when + NEW_PACKET_LIST is toggled. ([16]Bug 5349) + * TLS decryption fails with XMPP start_tls. ([17]Bug 8871) + * Wrong Interpretation of GTS starting slot. ([18]Bug 8946) + * "Follow TCP Stream" shows only the first HTTP req+res. + ([19]Bug 9044) + * The value of SEND_TO_UE in the DIAMETER Gx dictionary for + Packet-Filter-Usage AVP is 0 instead of 1. ([20]Bug 9126) + * Crash then try to delete the same entry (length range) + twice. ([21]Bug 9129) + * Crash if wrong "packet lengths range" entered. ([22]Bug + 9130) + * Bssgp => SGSN-INVOKE-TRACE use the wrong function... + ([23]Bug 9157) + * Minor correction to dissection of DLR frames in Ethernet/IP + dissector. ([24]Bug 9186) + * WebSphere MQ V7 Bug Fix 8322 TSHM_EBCDIC. ([25]Bug 9198) + * EDNS0 "Higher bits in extended RCODE" incorrectly decoded + in packet-dns.c. ([26]Bug 9199) + * Files with pcap-ng Simple Packet Blocks can't be read. + ([27]Bug 9200) + * Bug in RTP dissector if RTP extension is present. ([28]Bug + 9204) + * Improve "eHRPD Indicator" NVSE dissection in 3GPP2 A11 + Registration Request. ([29]Bug 9206) + * "make debian-package" fails, missing wsicon32.xpm. ([30]Bug + 9209) + * Fix typo in MODCOD list of DVB-S2 dissector. ([31]Bug 9218) + * Ring buffer crash when tshark gets too far behind dumpcap. + ([32]Bug 9258) + * PTP Dissector Wrongfully Reports Malformed Packet. ([33]Bug + 9262) + * Wireshark lua dissector unable to load for + media_type=application/octet-stream. ([34]Bug 9296) + * Wireshark crash when dissecting packet with NTLMSSP. + ([35]Bug 9299) + * Padding in uint64 field in DCERPC protocol wrongly + reported. ([36]Bug 9300) + * DCERPC data_blobs are not correctly dissected when NDR64 + encoding is used. ([37]Bug 9301) + * Multiple PDUs in the same DCERPC packet are not correctly + decrypted. ([38]Bug 9302) + * The tshark summary line doesn't display the frame number or + displays it sporadically. ([39]Bug 9317) + * Bluetooth: SDP improvements and minor fixes. ([40]Bug 9327) + * Duplicate IRC header field abbreviation breaks filter + (example: irc.response.command). ([41]Bug 9360) New and Updated Features @@ -92,26 +95,27 @@ What's New Updated Protocol Support - ASN.1 PER, ASSA R3, Bluetooth HCI ACL, EtherCAT AMS, GTPv2, - HTTP, IEEE 802.11, IPFIX, ISDN SUP, LDAP, MQ, NBAP, Novell SSS, - PROFINET MRP, Radiotap, ROHC, RTPS, SCSI, SIP, and STP + 3GPP2 A11, Bluetooth SDP, BSSGP, DCERPC, DCERPC NDR, DCERPC NT, + DIAMETER, DNS, DVB-S2, Ethernet, EtherNet/IP, H.225, IEEE + 802.15.4, IRC, NBAP, NTLMSSP, OpenWire, PTP, RTP, SIP, TCP, + WiMax, and XMPP New and Updated Capture File Support - and Microsoft Network Monitor, pcap-ng. + and . __________________________________________________________ Getting Wireshark Wireshark source code and installation packages are available - from [36]http://www.wireshark.org/download.html. + from [42]http://www.wireshark.org/download.html. Vendor-supplied Packages Most Linux and Unix vendors supply their own Wireshark packages. You can usually install or upgrade Wireshark using the package management system specific to that platform. A list - of third-party packages can be found on the [37]download page + of third-party packages can be found on the [43]download page on the Wireshark web site. __________________________________________________________ @@ -125,102 +129,114 @@ File Locations Known Problems - Dumpcap might not quit if Wireshark or TShark crashes. ([38]Bug + Dumpcap might not quit if Wireshark or TShark crashes. ([44]Bug 1419) - The BER dissector might infinitely loop. ([39]Bug 1516) + The BER dissector might infinitely loop. ([45]Bug 1516) Capture filters aren't applied when capturing from named pipes. - ([40]Bug 1814) + ([46]Bug 1814) Filtering tshark captures with read filters (-R) no longer - works. ([41]Bug 2234) + works. ([47]Bug 2234) The 64-bit Windows installer does not support Kerberos - decryption. ([42]Win64 development page) + decryption. ([48]Win64 development page) - Application crash when changing real-time option. ([43]Bug + Resolving ([49]Bug 9044) reopens ([50]Bug 3528) so that + Wireshark no longer automatically decodes gzip data when + following a TCP stream. + + Application crash when changing real-time option. ([51]Bug 4035) - Hex pane display issue after startup. ([44]Bug 4056) + Hex pane display issue after startup. ([52]Bug 4056) - Packet list rows are oversized. ([45]Bug 4357) + Packet list rows are oversized. ([53]Bug 4357) Summary pane selected frame highlighting not maintained. - ([46]Bug 4445) + ([54]Bug 4445) Wireshark and TShark will display incorrect delta times in some - cases. ([47]Bug 4985) + cases. ([55]Bug 4985) __________________________________________________________ Getting Help - Community support is available on [48]Wireshark's Q&A site and + Community support is available on [56]Wireshark's Q&A site and on the wireshark-users mailing list. Subscription information and archives for all of Wireshark's mailing lists can be found - on [49]the web site. + on [57]the web site. Official Wireshark training and certification are available - from [50]Wireshark University. + from [58]Wireshark University. __________________________________________________________ Frequently Asked Questions - A complete FAQ is available on the [51]Wireshark web site. + A complete FAQ is available on the [59]Wireshark web site. __________________________________________________________ - Last updated 2013-09-10 08:39:52 PDT + Last updated 2013-11-01 09:27:30 PDT References - 1. https://www.wireshark.org/security/wnpa-sec-2013-54 - 2. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8827 - 3. https://www.wireshark.org/security/wnpa-sec-2013-55 - 4. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9005 - 5. https://www.wireshark.org/security/wnpa-sec-2013-56 - 6. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9020 - 7. https://www.wireshark.org/security/wnpa-sec-2013-57 - 8. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9019 - 9. https://www.wireshark.org/security/wnpa-sec-2013-58 - 10. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9079 - 11. https://www.wireshark.org/security/wnpa-sec-2013-59 - 12. https://www.wireshark.org/security/wnpa-sec-2013-60 - 13. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8742 - 14. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4461 - 15. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5200 - 16. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5201 - 17. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7278 - 18. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8841 - 19. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8908 - 20. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8918 - 21. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8980 - 22. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8982 - 23. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8989 - 24. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8993 - 25. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8995 - 26. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9012 - 27. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9022 - 28. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9031 - 29. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9035 - 30. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9036 - 31. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9038 - 32. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9088 - 33. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9101 - 34. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9103 - 35. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9106 - 36. http://www.wireshark.org/download.html - 37. http://www.wireshark.org/download.html#thirdparty - 38. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1419 - 39. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1516 - 40. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1814 - 41. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2234 - 42. https://wiki.wireshark.org/Development/Win64 - 43. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4035 - 44. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4056 - 45. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4357 - 46. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4445 - 47. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4985 - 48. http://ask.wireshark.org/ - 49. http://www.wireshark.org/lists/ - 50. http://www.wiresharktraining.com/ - 51. http://www.wireshark.org/faq.html + 1. https://www.wireshark.org/security/wnpa-sec-2013-61.html + 2. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9139 + 3. http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-6336 + 4. https://www.wireshark.org/security/wnpa-sec-2013-62.html + 5. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9168 + 6. http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-6337 + 7. https://www.wireshark.org/security/wnpa-sec-2013-63.html + 8. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9228 + 9. http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-6338 + 10. https://www.wireshark.org/security/wnpa-sec-2013-64.html + 11. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9248 + 12. http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-6339 + 13. https://www.wireshark.org/security/wnpa-sec-2013-65.html + 14. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9263 + 15. http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-6340 + 16. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5349 + 17. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8871 + 18. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8946 + 19. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9044 + 20. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9126 + 21. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9129 + 22. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9130 + 23. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9157 + 24. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9186 + 25. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9198 + 26. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9199 + 27. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9200 + 28. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9204 + 29. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9206 + 30. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9209 + 31. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9218 + 32. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9258 + 33. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9262 + 34. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9296 + 35. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9299 + 36. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9300 + 37. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9301 + 38. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9302 + 39. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9317 + 40. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9327 + 41. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9360 + 42. http://www.wireshark.org/download.html + 43. http://www.wireshark.org/download.html#thirdparty + 44. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1419 + 45. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1516 + 46. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1814 + 47. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2234 + 48. https://wiki.wireshark.org/Development/Win64 + 49. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9044 + 50. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3528 + 51. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4035 + 52. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4056 + 53. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4357 + 54. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4445 + 55. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4985 + 56. http://ask.wireshark.org/ + 57. http://www.wireshark.org/lists/ + 58. http://www.wiresharktraining.com/ + 59. http://www.wireshark.org/faq.html diff --git a/docbook/release-notes.asciidoc b/docbook/release-notes.asciidoc index 9fa53ca8c5..600d5e3341 100644 --- a/docbook/release-notes.asciidoc +++ b/docbook/release-notes.asciidoc @@ -133,7 +133,7 @@ instead of 1. (ws-buglink:9126[]) * Bluetooth: SDP improvements and minor fixes. (ws-buglink:9327[]) -* Duplicate header field abbreviation breaks filter (example: irc.response.command). (ws-buglink:9360[]) +* Duplicate IRC header field abbreviation breaks filter (example: irc.response.command). (ws-buglink:9360[]) === New and Updated Features |
