From f253e110096ed673dc9de26da43ca80eaa2baec1 Mon Sep 17 00:00:00 2001 From: Francois-Xavier Le Bail Date: Thu, 25 Jan 2018 20:36:16 +0100 Subject: [PATCH] Add a sanity check on packet header length The packet length must be <= MAXIMUM_SNAPLEN. Currently, there is no D-Bus printer, thus no need for a bigger length. Now a pachet is valid if: capture length != 0, packet length != 0, capture length <= MAXIMUM_SNAPLEN, packet length <= MAXIMUM_SNAPLEN, packet length >= capture length. Moreover: Fix the packet header lengths of some fuzzed pcap files: If the lengths are > MAXIMUM_SNAPLEN, set them to MAXIMUM_SNAPLEN. Thus they will be always usable with this new sanity check. --- print.c | 12 +++ tests/aarp-heapoverflow-1.pcap | Bin 329 -> 54 bytes tests/aarp-heapoverflow-2.pcap | Bin 329 -> 56 bytes tests/arp-too-long-tha.out | 2 +- tests/arp-too-long-tha.pcap | Bin 104 -> 104 bytes tests/atm-heapoverflow.pcap | Bin 124 -> 44 bytes tests/atm-oam-heapoverflow.pcap | Bin 88 -> 44 bytes tests/bad-ipv4-version-pgm-heapoverflow.pcap | Bin 329 -> 74 bytes tests/beep-oobr.pcap | Bin 218 -> 184 bytes tests/bgp_mvpn_6_and_7.pcap | Bin 371 -> 165 bytes tests/bgp_pmsi_tunnel-oobr.pcap | Bin 968 -> 144 bytes tests/bgp_vpn_rt-oobr.pcap | Bin 5092 -> 887 bytes tests/calm-fast-mac-lookup-heapoverflow.pcap | Bin 202 -> 202 bytes tests/cve2015-0261-crash.pcap | Bin 201 -> 201 bytes tests/decnet-oobr.out | 2 +- tests/decnet-oobr.pcap | Bin 214 -> 124 bytes tests/decnet-shorthdr-oobr.out | 28 +++--- tests/decnet-shorthdr-oobr.pcap | Bin 911 -> 534 bytes tests/dhcp6_reconf_asan.pcap | Bin 132 -> 132 bytes tests/eap_extract_read2_asan.pcap | Bin 60 -> 60 bytes tests/esis_opt_prot-oobr.out | 2 +- tests/esis_opt_prot-oobr.pcap | Bin 76 -> 62 bytes tests/esis_snpa_asan-3.out | 2 +- tests/esis_snpa_asan-3.pcap | Bin 100 -> 100 bytes tests/esis_snpa_asan-4.out | 2 +- tests/esis_snpa_asan-4.pcap | Bin 214 -> 214 bytes tests/frf15-heapoverflow.pcap | Bin 88 -> 44 bytes tests/geonet-mac-lookup-heapoverflow.pcap | Bin 74 -> 66 bytes tests/gre-heapoverflow-1.out | 2 +- tests/gre-heapoverflow-1.pcap | Bin 202 -> 202 bytes tests/gre-heapoverflow-2.out | 2 +- tests/gre-heapoverflow-2.pcap | Bin 202 -> 152 bytes tests/heap-overflow-1.pcap | Bin 88 -> 41 bytes tests/heap-overflow-2.pcap | Bin 88 -> 41 bytes tests/heapoverflow-EXTRACT_16BITS.pcap | Bin 88 -> 52 bytes tests/heapoverflow-atalk_print.pcap | Bin 88 -> 56 bytes tests/heapoverflow-in_checksum.pcap | Bin 88 -> 88 bytes tests/heapoverflow-ip_print_demux.out | 2 +- tests/heapoverflow-ip_print_demux.pcap | Bin 202 -> 152 bytes tests/heapoverflow-ppp_hdlc_if_print.pcap | Bin 88 -> 42 bytes tests/heapoverflow-q933_printq.out | 2 +- tests/heapoverflow-q933_printq.pcap | Bin 88 -> 88 bytes tests/heapoverflow-sl_if_print.pcap | Bin 88 -> 56 bytes tests/heapoverflow-tcp_print.pcap | Bin 112 -> 104 bytes tests/hncp_dhcpv6data-oobr.pcap | Bin 148 -> 147 bytes tests/hoobr_aodv_extension.pcap | Bin 122 -> 102 bytes tests/hoobr_chdlc_print.pcap | Bin 2016 -> 544 bytes tests/hoobr_juniper.out | 2 +- tests/hoobr_juniper.pcap | Bin 856 -> 44 bytes tests/hoobr_juniper2.pcap | Bin 856 -> 50 bytes tests/hoobr_juniper3.pcap | Bin 856 -> 46 bytes tests/hoobr_juniper4.out | 2 +- tests/hoobr_juniper4.pcap | Bin 856 -> 48 bytes tests/hoobr_lookup_nsap.out | 18 ++-- tests/hoobr_lookup_nsap.pcap | Bin 1096 -> 492 bytes tests/hoobr_nfs_printfh.out | 16 ++-- tests/hoobr_nfs_printfh.pcap | Bin 2118 -> 1958 bytes tests/hoobr_nfs_xid_map_enter.out | 16 ++-- tests/hoobr_nfs_xid_map_enter.pcap | Bin 1046 -> 735 bytes tests/hoobr_parse_field.out | 2 +- tests/hoobr_parse_field.pcap | Bin 164 -> 152 bytes tests/hoobr_pimv1.out | 16 ++-- tests/hoobr_pimv1.pcap | Bin 3321 -> 510 bytes tests/hoobr_ripng_print.pcap | Bin 88 -> 88 bytes tests/hoobr_rt6_print.pcap | Bin 732 -> 195 bytes tests/hoobr_safeputs.out | 2 +- tests/hoobr_safeputs.pcap | Bin 88 -> 75 bytes tests/ieee802.11_rates_oobr.pcap | Bin 126 -> 111 bytes tests/ieee802.11_tim_ie_oobr.pcap | Bin 385 -> 335 bytes tests/ikev1_id_ipv6_addr_subnet-oobr.pcap | Bin 147 -> 147 bytes tests/ip6_frag_asan.pcap | Bin 100 -> 100 bytes tests/ip_printroute_asan.pcap | Bin 100 -> 100 bytes tests/ip_ts_opts_asan.pcap | Bin 90 -> 90 bytes tests/ipcomp-heapoverflow.pcap | Bin 329 -> 74 bytes tests/ipv6-mobility-header-oobr.pcap | Bin 88 -> 87 bytes tests/ipv6-next-header-oobr-1.pcap | Bin 88 -> 88 bytes tests/ipv6-next-header-oobr-2.pcap | Bin 88 -> 88 bytes tests/ipv6-rthdr-oobr.pcap | Bin 88 -> 85 bytes tests/ipv6hdr-heapoverflow.pcap | Bin 88 -> 88 bytes tests/isakmp-3948-oobr-2.pcap | Bin 88 -> 82 bytes tests/isakmp-rfc3948-oobr.out | 44 ++++----- tests/isakmp-rfc3948-oobr.pcap | Bin 5487 -> 1358 bytes tests/isakmp-various-oobr.pcap | Bin 206 -> 206 bytes tests/isakmpv1-attr-oobr.pcap | Bin 135 -> 135 bytes tests/isis-extd-isreach-oobr.out | 6 +- tests/isis-extd-isreach-oobr.pcap | Bin 469 -> 445 bytes tests/isis_stlv_asan-2.out | 2 +- tests/isis_stlv_asan-2.pcap | Bin 323 -> 323 bytes tests/isis_stlv_asan-3.out | 2 +- tests/isis_stlv_asan-3.pcap | Bin 323 -> 323 bytes tests/isis_stlv_asan-4.out | 2 +- tests/isis_stlv_asan-4.pcap | Bin 323 -> 323 bytes tests/isis_stlv_asan.out | 2 +- tests/isis_stlv_asan.pcap | Bin 323 -> 323 bytes tests/isis_sysid_asan.out | 2 +- tests/isis_sysid_asan.pcap | Bin 323 -> 323 bytes tests/isoclns-heapoverflow-2.out | 2 +- tests/isoclns-heapoverflow-2.pcap | Bin 152 -> 82 bytes tests/isoclns-heapoverflow-3.out | 2 +- tests/isoclns-heapoverflow-3.pcap | Bin 152 -> 82 bytes tests/isoclns-heapoverflow.pcap | Bin 329 -> 55 bytes tests/isoclns-oobr.pcap | Bin 88 -> 59 bytes tests/juniper_atm1.out | 2 +- tests/juniper_atm1.pcap | Bin 856 -> 48 bytes tests/juniper_es.out | 2 +- tests/juniper_es.pcap | Bin 856 -> 45 bytes tests/juniper_header-heapoverflow.out | 2 +- tests/juniper_header-heapoverflow.pcap | Bin 122 -> 122 bytes tests/kday6.out | 3 +- tests/kday6.pcap | Bin 4956 -> 3550 bytes tests/l2tp-avp-overflow.out | 1 - tests/l2tp-avp-overflow.pcap | Bin 1584 -> 1404 bytes tests/llc-xid-heapoverflow.out | 2 +- tests/llc-xid-heapoverflow.pcap | Bin 329 -> 63 bytes tests/lldp_8023_mtu-oobr.out | 2 +- tests/lldp_8023_mtu-oobr.pcap | Bin 147 -> 60 bytes tests/lldp_mgmt_addr_tlv_asan.out | 4 +- tests/lldp_mgmt_addr_tlv_asan.pcap | Bin 118 -> 118 bytes tests/mlppp-oobr.pcap | Bin 88 -> 44 bytes tests/mpls-label-heapoverflow.pcap | Bin 329 -> 62 bytes tests/nfs-attr-oobr.out | 92 +++++++++---------- tests/nfs-attr-oobr.pcap | Bin 7308 -> 5176 bytes tests/olsr-oobr-2.pcap | Bin 152 -> 152 bytes tests/oobr_parse_elements.pcap | Bin 300 -> 295 bytes tests/ospf6_decode_v3_asan.pcap | Bin 114 -> 111 bytes tests/pgm_group_addr_asan.pcap | Bin 111 -> 111 bytes tests/pgm_opts_asan.pcap | Bin 135 -> 135 bytes tests/pgm_opts_asan_2.pcap | Bin 135 -> 135 bytes tests/pgm_opts_asan_3.pcap | Bin 133 -> 133 bytes tests/pim_header_asan-2.pcap | Bin 142 -> 142 bytes tests/pim_header_asan-4.out | 4 +- tests/pim_header_asan-4.pcap | Bin 166 -> 166 bytes tests/pim_header_asan.pcap | Bin 96 -> 96 bytes tests/pktap-heap-overflow.out | 1 - tests/pktap-heap-overflow.pcap | Bin 3216 -> 1168 bytes tests/radiotap-heapoverflow.pcap | Bin 296 -> 48 bytes tests/radius_attr_asan.pcap | Bin 135 -> 135 bytes tests/relts-0x80000000.pcap | Bin 344 -> 344 bytes tests/rsvp_fast_reroute-oobr.pcap | Bin 114 -> 91 bytes tests/rsvp_uni-oobr-1.pcap | Bin 112 -> 94 bytes tests/rsvp_uni-oobr-2.pcap | Bin 112 -> 94 bytes tests/rsvp_uni-oobr-3.pcap | Bin 321 -> 234 bytes tests/slip-bad-direction.pcap | Bin 79 -> 79 bytes tests/snmp-heapoverflow-1.out | 8 +- tests/snmp-heapoverflow-1.pcap | Bin 2804 -> 424 bytes tests/snmp-heapoverflow-2.pcap | Bin 173 -> 94 bytes tests/stp-heapoverflow-1.out | 28 +++--- tests/stp-heapoverflow-1.pcap | Bin 1076 -> 514 bytes tests/stp-heapoverflow-2.out | 28 +++--- tests/stp-heapoverflow-2.pcap | Bin 1076 -> 528 bytes tests/stp-heapoverflow-3.out | 28 +++--- tests/stp-heapoverflow-3.pcap | Bin 1076 -> 486 bytes tests/stp-heapoverflow-4.out | 28 +++--- tests/stp-heapoverflow-4.pcap | Bin 1076 -> 556 bytes tests/stp-v4-length-sigsegv.out | 2 +- tests/stp-v4-length-sigsegv.pcap | Bin 246 -> 246 bytes tests/tcp-auth-heapoverflow.pcap | Bin 138 -> 104 bytes tests/tcp_header_heapoverflow.pcap | Bin 329 -> 86 bytes tests/tftp-heapoverflow.pcap | Bin 88 -> 88 bytes tests/udp-length-heapoverflow.pcap | Bin 329 -> 78 bytes tests/vqp-oobr.pcap | Bin 262 -> 94 bytes tests/vtp_asan-2.out | 2 +- tests/vtp_asan-2.pcap | Bin 108 -> 108 bytes tests/vtp_asan-3.out | 2 +- tests/vtp_asan-3.pcap | Bin 185 -> 185 bytes tests/vtp_asan.out | 2 +- tests/vtp_asan.pcap | Bin 154 -> 154 bytes tests/wb-oobr.pcap | Bin 396 -> 396 bytes 168 files changed, 224 insertions(+), 215 deletions(-) diff --git a/print.c b/print.c index be61aff9..274ac202 100644 --- a/print.c +++ b/print.c @@ -346,6 +346,14 @@ pretty_print_packet(netdissect_options *ndo, const struct pcap_pkthdr *h, ND_PRINT(","); ND_PRINT(" caplen(%u) > %u", h->caplen, MAXIMUM_SNAPLEN); } + if (h->len > MAXIMUM_SNAPLEN) { + if (!invalid_header) { + invalid_header = 1; + ND_PRINT("[Invalid header:"); + } else + ND_PRINT(","); + ND_PRINT(" len(%u) > %u", h->len, MAXIMUM_SNAPLEN); + } if (invalid_header) { ND_PRINT("]\n"); return; @@ -356,7 +364,11 @@ pretty_print_packet(netdissect_options *ndo, const struct pcap_pkthdr *h, * capture length != 0, * packet length != 0, * capture length <= MAXIMUM_SNAPLEN, + * packet length <= MAXIMUM_SNAPLEN, * packet length >= capture length. + * + * Currently, there is no D-Bus printer, thus no need for + * bigger lengths. */ ts_print(ndo, &h->ts); diff --git a/tests/aarp-heapoverflow-1.pcap b/tests/aarp-heapoverflow-1.pcap index 7ea3f2208ab061ca1aeec296d0b57e781138e328..be84f53f33f106c3c217b5e62d5c815d2c812bbf 100644 GIT binary patch delta 28 XcmX@fWHv!TjE?~XSQreDK*MJMMOy`p literal 329 ocmca|c+)~A1{MYbDBxpYU|?i`a}5-cIZ!nXpJA#;X?O?#0FEaqr diff --git a/tests/atm-oam-heapoverflow.pcap b/tests/atm-oam-heapoverflow.pcap index 0bbb4d17630f77f2eab5ec7013e9cddc591b0b12..a0691e081f34750d3b963b8cfa20d3f8c8207def 100644 GIT binary patch delta 17 Vcma#hnV`VK!T3*-0GB}rjQ{`u literal 218 ycmca|c+)~A1{MYbC~#n4V0g*^=Nbe8`7k+}&@c;fz^1biv_k_)MLm>_)r9~o2q|#@ diff --git a/tests/bgp_mvpn_6_and_7.pcap b/tests/bgp_mvpn_6_and_7.pcap index 1c73e10586e33568b65b73e847e6c2190277a6c0..6f4759c1f2b63051dc7cb1e6bc42c74afd8d7454 100644 GIT binary patch delta 21 acmey&w3Kmz0!J+a2(U0r+$%oOJ`Dgpg#~Z` delta 131 zcmZ3=_?c;f0tW*l1A`d@1Ls7IT3bej%?u~%V_tVMFgA3gFx==noHUS&%Z!N{rmQcRnHabxCWy0t{9k=| H)Bgqliqa>z diff --git a/tests/bgp_pmsi_tunnel-oobr.pcap b/tests/bgp_pmsi_tunnel-oobr.pcap index c3d5a9ebb3932365bc46912a8bece1a6e2f99f7b..ede82db587a49b5377df1f6c23c63302df5d9077 100644 GIT binary patch delta 18 XcmX@XK7nz90!Ib|2(U0r)W`q;D1QT{ literal 968 zcmcJNF-SsD6o&u%jF-d{AD9-kh(t&rwKp_1I7S4G4hD@ud+(05C@n1^7($DKWFWYN z($Zcu*dj!&AqFL4w{xy(uP~*c1NU+7dFR~!obR5S%i@WFF<=Tda+uu)AZV@a$c2!2 z@V00lgk{32!x5-fviX7+s}RwQzm7LE6>K0Jc;cjUz-hJ)AY>|mT5awwmZ7UB)Hg%S zfXANpnMEZr4*2gO$O5!N0>WshB-woOjPG9rthS^Yz|yGR=HLb7B&y+TKEs8)Mh66@ z2ikt$`=Z)(qf7$6()GHBT942ChIuz=mP#tH(pq>4p0m*)c0!UpZ;^pNlV1r!bcU5&Uv?|bh!L6Yse%4s|gNE+B zr$KVsn)H_33z_6k;jw#Q9z*&x%y@Zl4Zoo;M$_l_`gi&x$Y?NqG6br_q&~@g{of<^ ctO@cIYO+L`Hr)x)^&_5MW{0s8P%~`2(XA6AQy;E$#!10F*QcUH||9 literal 5092 zcmca|c+)~A1{MYeaRCMp_z%R4KrCg%%O%Fl#8AY=z+lF}zRo9y2gr(Z^>oy6P521_zKU zZ~{e~GPITW{{a{sf5CP*5O32v;*}Cs35>c=kaR&x%&T41_mL1LWb3Y zau)>r00u3L4W*X@>HnY61TndP(Dh*|As`Y&Kpuy*C=T%vBn--u#Dg^$N)0eXPz4lF zx#aWyla#Qrm(iF7>o6-S$q!yEI!B92EP+ClPyV84M`F7|1lJ1|bq4n?`LPCi{k+=R2zcyH{{}1t5^&h1ifYqnu=)q^p(3TTIb-p|-j{lQ9O7Z_Os!>$oUBNKr8?ot77)|Rl TG(J{t3RY3t2tu32pusT!A{OWo diff --git a/tests/calm-fast-mac-lookup-heapoverflow.pcap b/tests/calm-fast-mac-lookup-heapoverflow.pcap index 64ca5815d7a0684f839f915aeff7ef13fc4a6b2a..15744a963129efa08a7038477ed60c2ae3e524d6 100644 GIT binary patch literal 202 qcmca|c+)~A1{MYbC}04xvl-xAgCqtJK*+g#aE*1FHZ4 delta 14 WcmX@fc#?5~3gg0wg~AgpCISE`eg#?p diff --git a/tests/decnet-oobr.out b/tests/decnet-oobr.out index c296076e..5195082d 100644 --- a/tests/decnet-oobr.out +++ b/tests/decnet-oobr.out @@ -1,4 +1,4 @@ -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 0000 MEDSA 16.6:48: [|decnet] diff --git a/tests/decnet-oobr.pcap b/tests/decnet-oobr.pcap index 7c09c1ea5e48642556645253c11db68fe9e33ffe..0554b7bae61435e5e66c5ac555ddcb76b47922a3 100644 GIT binary patch literal 124 xcmca|c+)~A1{MYbC{SWxU|?i`a}7Xz1|)fyI@~li9k*^l)F&_-7<9q40svde7J&c& literal 214 wcmca|c+)~A1{MYbC{SWxU|?i`a}Dx 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 0000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 0000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 0000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 0000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 0000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 0000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 0000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 0000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 0000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 0000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 0000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 0000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 0000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 0000 [|decnet] diff --git a/tests/decnet-shorthdr-oobr.pcap b/tests/decnet-shorthdr-oobr.pcap index 0af98f6a7f5dc88a93aa1b3a953fbdf42109b8d4..a4c016001a39ba5a31605b86e078bec61b525752 100644 GIT binary patch literal 534 ycmca|c+)~A1{MYbC=g;`U|?i`a}7Xz1|)fyIs`qc0udG<*3b@*1ZD$+CIbMNB2RMw literal 911 zcmca|c+)~A1{MYbC=g;`U|?i`a}A7ue3%@0^r#7taHBjNB#Dg+1!5IKV^o<$^+0X% hq-n7wO*#IQMxxzHB->4SR2g8gGlAK_pb5Xv3;^+oqM!f( diff --git a/tests/dhcp6_reconf_asan.pcap b/tests/dhcp6_reconf_asan.pcap index 3eb6fe02adebff65b0c53c301bd396f27754df01..9d0ffaba018e052e0263c15f123bda70fd9f8a53 100644 GIT binary patch delta 14 VcmZo+Y+; diff --git a/tests/esis_opt_prot-oobr.pcap b/tests/esis_opt_prot-oobr.pcap index c50cb67eca7abd05558225bc5bebfe647b760fae..a4de137f1841a340f227b3bfdb09abe9e656c9af 100644 GIT binary patch delta 35 ocmeaVo1h>k#sC5=3`}?a{o`*kV`NC<_|I^RiJ^~yp^>{00Fvnl[|esis] diff --git a/tests/esis_snpa_asan-3.pcap b/tests/esis_snpa_asan-3.pcap index 812f54290f2055403e17e0fea0fba2c506cba1aa..bc07ec635694cefccd7505e7b313d33166fcf83c 100644 GIT binary patch delta 12 TcmYdEnc&63z`(*V(N7Ej6Waoy delta 12 TcmYdEnc&5u#K1UjqMsN57cv7~ diff --git a/tests/esis_snpa_asan-4.out b/tests/esis_snpa_asan-4.out index 10a52d46..94e1ec2b 100644 --- a/tests/esis_snpa_asan-4.out +++ b/tests/esis_snpa_asan-4.out @@ -13,7 +13,7 @@ UI 32! ES-IS, length 65565 Number of Source Addresses: 2 NET (length: 0): isonsap_string: illegal length NET (length: 4): ec.ff00.00, bad opts/li -UI 22! ES-IS, length 4244701213 +UI 22! ES-IS, length 262139 redirect (6), v: 1, checksum: 0x7034 (incorrect should be 0x36fe), holding time: 21315s, length indicator: 17 isonsap_string: illegal length SNPA (length: 0): diff --git a/tests/esis_snpa_asan-4.pcap b/tests/esis_snpa_asan-4.pcap index 9cdfe03476c099fff9843087cebede31bb65ea05..9160c0520eedaff8379ee90f999c413b20b629a9 100644 GIT binary patch delta 14 Vcmcb{c#UzwG!_O17KVwlYyc!51VjJ; delta 14 Wcmcb{c#UzwG!`WW#=jG1*#H12@&#Z3 diff --git a/tests/frf15-heapoverflow.pcap b/tests/frf15-heapoverflow.pcap index 5898e7b77cb47e8dd715f6552faa730e7efcffae..d56ef1f3f4934864970a274cb092bb41f2fb00dc 100644 GIT binary patch delta 17 Vcma#hnV`VK!Tp@ diff --git a/tests/gre-heapoverflow-1.out b/tests/gre-heapoverflow-1.out index 7911339b..e80e25b2 100644 --- a/tests/gre-heapoverflow-1.out +++ b/tests/gre-heapoverflow-1.out @@ -1,4 +1,4 @@ -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 diff --git a/tests/gre-heapoverflow-1.pcap b/tests/gre-heapoverflow-1.pcap index f814815c642e570a178b0f8bc08084af697b1920..103031f8fdd9ff4cabacf265584b559b1b196510 100644 GIT binary patch delta 28 gcmX@bc#3g?3JU`R3&TXiq=^ok> 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 00 diff --git a/tests/gre-heapoverflow-2.pcap b/tests/gre-heapoverflow-2.pcap index 1722d8d0de5923c09a36df4754214c393a61865d..3a20484320832fcf73d3e210531b33f27b58f33b 100644 GIT binary patch delta 29 ccmX@bID>J50*3(u2(U0rG_+)gF=rV708R7+vH$=8 literal 202 xcmca|c+)~A1{MYb7+_#vU}QjWlYo4f6rE@+HgYhyf-MKSMIYgc0|+LN1pxIeB`^R0 diff --git a/tests/heap-overflow-1.pcap b/tests/heap-overflow-1.pcap index f1519b83f8b77b6e280f583f55170fc07f8bc055..afcc27447ba3e6a5e5292c41400d574b66fb79d5 100644 GIT binary patch delta 14 Scma#hoS?wT$N&N?3 diff --git a/tests/heapoverflow-atalk_print.pcap b/tests/heapoverflow-atalk_print.pcap index 83f04fd664691fda34f6d7e0c2bd927c1b0d4714..aa5b4fae0c09b4dfffeccaf12453dd095edbf493 100644 GIT binary patch delta 29 Ycma#Bn4lmbzyJa)3 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 00 diff --git a/tests/heapoverflow-ip_print_demux.pcap b/tests/heapoverflow-ip_print_demux.pcap index 8dec30b4f7e4aa62a07ee7d192bc4e860bb5f176..9090f7fcde315b6f7bacfa3d6ed91381282dc28c 100644 GIT binary patch delta 29 ccmX@bID>J50*3(u2(U0rG_+)gF=rV708R7+vH$=8 literal 202 wcmca|c+)~A1{MYb7+_#vU}QjWlYo4f6rE@+HgYhyf-MKS#TelVBqmT00PWi(rvLx| diff --git a/tests/heapoverflow-ppp_hdlc_if_print.pcap b/tests/heapoverflow-ppp_hdlc_if_print.pcap index 356adf37c7cd404e160f4123e78c7f596d07dc8d..7012ea8d58b2b05d1ce095c7c2ea74884c4c2a36 100644 GIT binary patch delta 15 Tcma#hnxMeN!~g;;3U@&5Ua}5lDe3%?5GywB75Jdn0 diff --git a/tests/heapoverflow-q933_printq.out b/tests/heapoverflow-q933_printq.out index ebc5605f..9681ef27 100644 --- a/tests/heapoverflow-q933_printq.out +++ b/tests/heapoverflow-q933_printq.out @@ -1,2 +1,2 @@ -Q.933, CCITT, codeset 0, unknown message (0x30), length 808464430 +Q.933, CCITT, codeset 0, unknown message (0x30), length 262142 unknown IE (0x30), length 48: [|q.933] diff --git a/tests/heapoverflow-q933_printq.pcap b/tests/heapoverflow-q933_printq.pcap index 56d1b125b966fcfad312b677fdcd92d6e0a2f7c9..b3b3c3129777354e58cb87cf1c53bda10979b990 100644 GIT binary patch delta 17 Ycma!un4rSOz`(+w%rVhWeWC+903OH#TL1t6 delta 17 Xcma!un4rRD00hb$6AjfTI<{9 delta 15 WcmbQtIE8V73bWrofr;ulj0^xKb_8Mo diff --git a/tests/hoobr_aodv_extension.pcap b/tests/hoobr_aodv_extension.pcap index b02ab0507d89b51a1ae6efe21ea54b6f5de5c089..263949a81f006a82c28820c3385518123a1fae3a 100644 GIT binary patch delta 16 Ucmb3==i%033+|(f|Me delta 37 acmYeRnxMcD#K6E{00a{?>_k8`IsgEcs|R)f diff --git a/tests/hoobr_chdlc_print.pcap b/tests/hoobr_chdlc_print.pcap index ffc75a4b214033df32874a86dfd75243e9a44d6b..22ac1572d1a107ebf28abb25f5f61dc297dfe242 100644 GIT binary patch literal 544 pcmca|c+)~A1{MYbC}3e=V8~#Aa}7Xz1|)fqvQe>-5(fYN0RTtILHPgx literal 2016 zcmca|c+)~A1{MYbC}3e=V8~#Aa}6ATe3%?HXbB?Cqqe<+-8^E$#e$K#@j;C^9g1d9 nJ3SB^f7G^ju$wnr!e!JSl;v`2r_+%Z9|jDta{u2yQepxCYMyQ3 diff --git a/tests/hoobr_juniper.out b/tests/hoobr_juniper.out index b13cfbee..72ab682b 100644 --- a/tests/hoobr_juniper.out +++ b/tests/hoobr_juniper.out @@ -1 +1 @@ -[|juniper_hdr], length 808464432 +[|juniper_hdr], length 262144 diff --git a/tests/hoobr_juniper.pcap b/tests/hoobr_juniper.pcap index 831a8c7db5bbf4a25a5e4d71be3277697d8b1b93..5e8fde4be03f0733ee54ee9b1ce100b620dd05d9 100644 GIT binary patch delta 18 Wcmcb?rZYi-hlK$ISQvcWoecmWI|9}K literal 856 tcmca|c+)~A1{MYbC}3e=VCZCka}5lbAskHOPSQvcWoedxW05*{X2mk;8 literal 856 tcmca|c+)~A1{MYbDBxmXVCZCka}5lbAskkBtEYSQvcWoec~O04CJ~JOBUy literal 856 tcmca|c+)~A1{MYbC}3k?U}#~0a}5lbAsk?pzHtu diff --git a/tests/hoobr_lookup_nsap.out b/tests/hoobr_lookup_nsap.out index 7d8613b0..3105fe55 100644 --- a/tests/hoobr_lookup_nsap.out +++ b/tests/hoobr_lookup_nsap.out @@ -1,23 +1,23 @@ -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 000000 -CLNP, 30.0000.0000.0000 > 30.3030, unknown (16), length 808464417 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +CLNP, 30.0000.0000.0000 > 30.3030, unknown (16), length 262129 +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 000000 -CLNP, 30.0000.0000.0000 > 30.3030, unknown (16), length 808464417 +CLNP, 30.0000.0000.0000 > 30.3030, unknown (16), length 262129 diff --git a/tests/hoobr_lookup_nsap.pcap b/tests/hoobr_lookup_nsap.pcap index 9f13f63b6a158b2df8546b9cc9ef77475110060d..665c8cccee0f75e5858da5743af495c9c4d13f58 100644 GIT binary patch literal 492 zcmca|c+)~A1{MYbC{STwU|?i`a}7Xz1|)fyI(+n~9s{i5_V1rTqX8o%ph?~s*pLT#3)SZa2E_Os0O-5RHUIzs diff --git a/tests/hoobr_nfs_printfh.out b/tests/hoobr_nfs_printfh.out index 8082b86b..2f8d13f8 100644 --- a/tests/hoobr_nfs_printfh.out +++ b/tests/hoobr_nfs_printfh.out @@ -1,4 +1,4 @@ -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 @@ -13,11 +13,11 @@ 0x00b0: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x00c0: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x00d0: 3030 3030 3030 3030 3030 3030 000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 00000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 @@ -31,7 +31,7 @@ 0x00a0: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x00b0: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x00c0: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 @@ -46,7 +46,7 @@ 0x00b0: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x00c0: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x00d0: 3030 3030 3030 3030 3030 3030 000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 @@ -60,7 +60,7 @@ 0x00a0: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x00b0: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x00c0: 3030 3030 0000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 @@ -72,7 +72,7 @@ 0x0080: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0090: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x00a0: 3030 3030 0000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 @@ -86,7 +86,7 @@ 0x00a0: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x00b0: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x00c0: 3030 3030 3030 3030 3030 3030 000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 diff --git a/tests/hoobr_nfs_printfh.pcap b/tests/hoobr_nfs_printfh.pcap index ed9abbe8996ac75693e0fbdf918329083c1501a4..0a9e9f97728dd0c0d548ca02b6bde896a2a58e86 100644 GIT binary patch literal 1958 zcmca|c+)~A1{MYbD0s!dz`)1==Nf?c3`p`Yb;F-Fql(Y(QN@&@651m-wOktZ@w{os z`|#F~_W`lxz{t&q=di>v2ZJj(;2anX*pNezgAv9HfH9yn$PkzikjV_htROy+_JD~~ Ng9e%h0t$r80sxhlWeETP delta 104 zcmZ3+e@tM40y7sQ!(>C2-4h*Rn9UeKOy|i7j4YFlSawZxFkse#$<{Dm0?PswsxWVY aFz!I(NoYA0V{V_`7>g2^}7&H(`0H67gm diff --git a/tests/hoobr_nfs_xid_map_enter.out b/tests/hoobr_nfs_xid_map_enter.out index 0629063b..2e690704 100644 --- a/tests/hoobr_nfs_xid_map_enter.out +++ b/tests/hoobr_nfs_xid_map_enter.out @@ -1,39 +1,39 @@ -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 30 0 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 30 0 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 30 0 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 30 0 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 30 0 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 30 0 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 30 0 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 diff --git a/tests/hoobr_nfs_xid_map_enter.pcap b/tests/hoobr_nfs_xid_map_enter.pcap index 7f94730b1f17be256baf7540373074897b98c80b..d61c105a4e0b61671b71f5fe8b0f1311641246c7 100644 GIT binary patch literal 735 zcmca|c+)~A1{MYbD6nT>U|?i`a}7Xz1|)fyIx^`|wPl- literal 1046 zcmca|c+)~A1{MYbD6nT>U|?i`a}Bb9e3%@4={UOD97J>5oTzR?7u8LqRty&nxXT7E g-A2*P@7U5T2ZJj(5`no^5IHtE7-2l1^9bf>07qTFRsaA1 diff --git a/tests/hoobr_parse_field.out b/tests/hoobr_parse_field.out index 2eecd737..1c0779d3 100644 --- a/tests/hoobr_parse_field.out +++ b/tests/hoobr_parse_field.out @@ -1,4 +1,4 @@ -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 00 diff --git a/tests/hoobr_parse_field.pcap b/tests/hoobr_parse_field.pcap index f76d6282a98a2f0a38d4c6946f03393937fd3093..5a0c276c5008f55a401f421b79437b81dd659841 100644 GIT binary patch literal 152 zcmca|c+)~A1{MYb7+_#vU}QjW4S;+GWO_C 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 00000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 00000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 00000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 00000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 00000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 00000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 00000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 00000000 IP 48.48.48.48 > 48.48.48.48: igmp pimv1 [type 48][|pim] diff --git a/tests/hoobr_pimv1.pcap b/tests/hoobr_pimv1.pcap index d9121faad93237f56f8f0355e90e3b1b966421f0..5aa3f38fc6b4c29692ea2518f32ea97b1e6785d1 100644 GIT binary patch literal 510 zcmca|c+)~A1{MYbC{SZyU|?i`a}7Xz1|)fyI{fsgF68hT=+NL`a0NTZfx&B5`1fMrjg4U^E0t2rTSMfoT#XkpPy}#;yj7 FC;*8ki0=RZ diff --git a/tests/hoobr_safeputs.out b/tests/hoobr_safeputs.out index fdef40b1..b968b1b3 100644 --- a/tests/hoobr_safeputs.out +++ b/tests/hoobr_safeputs.out @@ -1,2 +1,2 @@ -LLDP, length 808464418: 0000000000 +LLDP, length 262130: 0000000000 [|LLDP] diff --git a/tests/hoobr_safeputs.pcap b/tests/hoobr_safeputs.pcap index ce3b12491beaf81477b68ff7b43b273dff61f859..4948fc2d4c45f0e24d77189dbc8a0a72520b7bcb 100644 GIT binary patch delta 16 Ucma#>o}j>?%m4x`3==h!0T+-0UjP6A delta 30 acmeZ{n4rL6z`(#@00a{?lzBlk8~^}X6a}RK diff --git a/tests/ieee802.11_rates_oobr.pcap b/tests/ieee802.11_rates_oobr.pcap index bb2819a8c04c245c86fc53e40c77f5de92129dab..30a5698b468e3d83849d3d5f74cdcc88ac709658 100644 GIT binary patch delta 23 ccmb=+pP<0w&Hw@|3b3=EQ(*=x diff --git a/tests/ieee802.11_tim_ie_oobr.pcap b/tests/ieee802.11_tim_ie_oobr.pcap index bb05c81f75efd9cd1f1073dcc015113cfad655cc..2116a6bffdfa1b14641f8c9f7e634ee189c58f9e 100644 GIT binary patch literal 335 zcmca|c+)~A1{MYbD9B@AV8~>Ea}C0Pdr BI-~#q delta 42 rcmX@l)W|$RWujr|LuTwq#^WdWF0n)p9pqJt3t+xrT1 diff --git a/tests/ikev1_id_ipv6_addr_subnet-oobr.pcap b/tests/ikev1_id_ipv6_addr_subnet-oobr.pcap index b9cfebd2ec7761b078be3c2adad23773c996b352..316473b873e3646256940153fafdd1af645940ae 100644 GIT binary patch delta 14 VcmbQtIGJ&R3JU`R3&TW>YycRV0|@{C delta 14 VcmbQtIGJ&R3X2&758FhIYycWm15E$` diff --git a/tests/ip6_frag_asan.pcap b/tests/ip6_frag_asan.pcap index a99a22d126e946eebc1183d8b57fda650fe7abf6..0ef1ffc92ea892a012d3f432000a3608ed89d4de 100644 GIT binary patch delta 11 ScmYdEnV`bVz`!z5-4*~4(gJw^ delta 11 ScmYdEnV`a4!q6~L-4*~9dIMq diff --git a/tests/isakmp-rfc3948-oobr.out b/tests/isakmp-rfc3948-oobr.out index 844170a2..c43c9359 100644 --- a/tests/isakmp-rfc3948-oobr.out +++ b/tests/isakmp-rfc3948-oobr.out @@ -1,67 +1,67 @@ -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 000000000000 IP 48.48.48.48.4500 > 48.48.48.48.12336: [|isakmp] diff --git a/tests/isakmp-rfc3948-oobr.pcap b/tests/isakmp-rfc3948-oobr.pcap index ae1d5afbe7d3993b7e8bc08073593f8604dba38c..c3c1f72e53be921169ae81f93b8f71b35c093737 100644 GIT binary patch literal 1358 zcmca|c+)~A1{MYbD9~bHU|?i`a}7Xz1|)fyI>Pj*PC{Wc8bYHX1POuBlrU6M0tbUD Q*r~uGQV`*0!6^_n0C1t;5dZ)H literal 5487 zcmca|c+)~A1{MYbD9~bHU|?i`a}8{Oe3%@i^r%^+h2Us-jfNL`2n^OVVMVoaViODX zN*wgi8|9CNz-S1Jh5&6tU>()ULfX0$yXjuY%|Gl)Mn%aAfrUdYUHCDLR>fq+^r$8x xLSQs?5fMnEO2`a>(bPp|z>R7nCIqn5j2sNEV4c7^QxIW<;1mRVlr_>r003^X`hWlc diff --git a/tests/isakmp-various-oobr.pcap b/tests/isakmp-various-oobr.pcap index b81d3f5d372f1c34439b23c5cdfcfc1e296e9b46..4995f9d589131c842c3a2c3ae6346d0884e6b508 100644 GIT binary patch delta 22 ZcmX@dc#d&`3JU`R3&TW>a0uP(4FEk91kwNi delta 22 ZcmX@dc#d&`3X2&7gZM;^a0uP(4FE#m1!MpK diff --git a/tests/isakmpv1-attr-oobr.pcap b/tests/isakmpv1-attr-oobr.pcap index 53619af434e013d95bcaaaec59d2ae510d88645d..21750fca50b49cfad76cda65e0f9c86b327c221e 100644 GIT binary patch delta 14 VcmZo?Y-gOH!otA7!Z1-I9sn0s0_6Yz delta 14 VcmZo?Y-gOH!t%eKk!hkvJOCj=1Y!UH diff --git a/tests/isis-extd-isreach-oobr.out b/tests/isis-extd-isreach-oobr.out index 71d7c3fe..2e4c6efa 100644 --- a/tests/isis-extd-isreach-oobr.out +++ b/tests/isis-extd-isreach-oobr.out @@ -1,11 +1,11 @@ -OSI NLPID 0xfe unknown, length: 33554428 +OSI NLPID 0xfe unknown, length: 262140 0x0000: fe7f 4a01 0066 0002 00ff ffff f200 0000 0x0010: 00c6 0000 007f e6ff 00e6 6800 0000 unknown CHDLC protocol (0xfafe) -OSI NLPID 0xfe unknown, length: 33554428 +OSI NLPID 0xfe unknown, length: 262140 0x0000: fe7f 4a01 f165 0002 0000 0000 0000 0000 0x0010: 00c6 0000 007f e6ff 00e6 6800 0000 -IS-IS, length 33554427 +IS-IS, length 262139 L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 3 (0) source-id: 3801.0101.0101, holding time: 257s, Flags: [unknown circuit type 0x00] lan-id: 0101.0101.0100.00, Priority: 1, PDU length: 257 diff --git a/tests/isis-extd-isreach-oobr.pcap b/tests/isis-extd-isreach-oobr.pcap index c024ab4aebcd165ec9203068167cc545af1fe511..c3a7680c2dca9770a9eabd04c32bebafe3360371 100644 GIT binary patch delta 30 ccmcc0yq9@`8WRh{L=6KF83iVLz~sLF0CRl^1^@s6 delta 55 zcmdnXe3f~E8WRK4L=6Kb29=3XK$2-<518EdUqXSQo`HeEj76SdkEZ7|$+o)*jG_(v G^B4esu?`ae diff --git a/tests/isis_stlv_asan-2.out b/tests/isis_stlv_asan-2.out index a2c0b173..0383786f 100644 --- a/tests/isis_stlv_asan-2.out +++ b/tests/isis_stlv_asan-2.out @@ -1,4 +1,4 @@ -UI 22! IS-IS, length 469869187 +UI 22! IS-IS, length 262139 L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 224 (224) source-id: fed0.f90f.58af, holding time: 34047s, Flags: [unknown circuit type 0x00] lan-id: 0100.0088.a201.1c, Priority: 65, PDU length: 4096 diff --git a/tests/isis_stlv_asan-2.pcap b/tests/isis_stlv_asan-2.pcap index c45050465d4fdd82c5324cfabedf2696746a6907..f1f84c1ff80ea2902b7147025aba07199a2c21b8 100644 GIT binary patch delta 15 WcmX@ibeL&^3JU`R3&TbYX+{7b-UB=U delta 15 WcmX@ibeL&^3QNZ#MwyKo(u@Eq1_XZq diff --git a/tests/isis_stlv_asan-3.out b/tests/isis_stlv_asan-3.out index 29432293..ebe1bd25 100644 --- a/tests/isis_stlv_asan-3.out +++ b/tests/isis_stlv_asan-3.out @@ -1,4 +1,4 @@ -UI 22! IS-IS, length 469869187 +UI 22! IS-IS, length 262139 L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 224 (224) source-id: fed0.f90f.58af, holding time: 34047s, Flags: [unknown circuit type 0x00] lan-id: 0100.0088.a201.1c, Priority: 65, PDU length: 4096 diff --git a/tests/isis_stlv_asan-3.pcap b/tests/isis_stlv_asan-3.pcap index b5fa12e125ffa24daa044d7af8697ab1564b39e2..8d636c85818fe8fffc9b0a6423c5f7c440355050 100644 GIT binary patch delta 15 WcmX@ibeL&^3JU`R3&TbYX+{7b-UB=U delta 15 WcmX@ibeL&^3QNZ#MwyKo(u@Eq1_XZq diff --git a/tests/isis_stlv_asan-4.out b/tests/isis_stlv_asan-4.out index eb88a70c..fa7725fe 100644 --- a/tests/isis_stlv_asan-4.out +++ b/tests/isis_stlv_asan-4.out @@ -1,4 +1,4 @@ -UI 22! Pad! IS-IS, length 1644274306 +UI 22! Pad! IS-IS, length 262138 L2 Lan IIH, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 224 (224) source-id: fe02.0000.d0f9, holding time: 3928s, Flags: [unknown circuit type 0x00] lan-id: 1000.4101.0000.88, Priority: 127, PDU length: 44959 diff --git a/tests/isis_stlv_asan-4.pcap b/tests/isis_stlv_asan-4.pcap index 9ecc50cde0a59387c8e10e7670f6128399ed8382..84a507f944a7490ef04c14b9f52c9aa29e39a23a 100644 GIT binary patch delta 15 WcmX@ibeL&^3JU`R3&TbYX+{7b-UB=U delta 15 WcmX@ibeL&^3QNZ##-xoJ(u@ErWCX 30:30:da:fe:fe:fe, ethertype OSI (0xfefe), length 808464432: OSI NLPID CLNP (0x81): [|clnp] +fe:fe:fe:fe:fe:fe > 30:30:da:fe:fe:fe, ethertype OSI (0xfefe), length 262144: OSI NLPID CLNP (0x81): [|clnp] diff --git a/tests/isoclns-heapoverflow-2.pcap b/tests/isoclns-heapoverflow-2.pcap index c86570be8609927164ec3add92547df664cac6ea..703ef033598ed4fbf7988e6157f1ac388926615a 100644 GIT binary patch delta 17 WcmbQi7&JkFLyG|fSQsX1XaN8m_5!s4 literal 152 zcmca|c+)~A1{MYbD9~bHU|VFd9Q7?@ue7zn_18wA13 U!Arxio=Wo0OnUH!vFvP diff --git a/tests/isoclns-heapoverflow-3.out b/tests/isoclns-heapoverflow-3.out index 74d2a227..e3fa3a6d 100644 --- a/tests/isoclns-heapoverflow-3.out +++ b/tests/isoclns-heapoverflow-3.out @@ -1 +1 @@ -fe:fe:fe:fe:fe:fe > 30:30:da:fe:fe:fe, ethertype OSI (0xfefe), length 808464432: OSI NLPID CLNP (0x81): 00 > e8.3030, Echo Request, length 808464417 +fe:fe:fe:fe:fe:fe > 30:30:da:fe:fe:fe, ethertype OSI (0xfefe), length 262144: OSI NLPID CLNP (0x81): 00 > e8.3030, Echo Request, length 262129 diff --git a/tests/isoclns-heapoverflow-3.pcap b/tests/isoclns-heapoverflow-3.pcap index 1425bdbc14d48cb2e7f05c151079ba3b03f3691c..a49b7bb5fc8d0b2cdf871cc0a0ffa492aba16428 100644 GIT binary patch delta 17 WcmbQi7&JkFLyG|fSQsX1XaN8m_5!s4 literal 152 zcmca|c+)~A1{MYbD9~bHU|VFd9Q7?@ue7%;+h8wA13 U!Arxio=Wo0O4yWv;Y7A diff --git a/tests/isoclns-heapoverflow.pcap b/tests/isoclns-heapoverflow.pcap index f724db003e07aacef64a02199d4be3eb92b25f0a..bf90da651164317179486d353ea245852e84ab6e 100644 GIT binary patch delta 29 YcmX@fWIjPboSy*%SQreDz`uV608H`*NdN!< literal 329 ocmca|c+)~A1{MYbDBx#cU|?i`a}5-cIZ!qK{=rm_((n)f03)G3-v9sr diff --git a/tests/isoclns-oobr.pcap b/tests/isoclns-oobr.pcap index 276b8a9211fe67c6444cee6ef00f97ddc4a3a031..0a28b5f7f118373c73e4a0f8667cfb9517cca99b 100644 GIT binary patch delta 32 bcma#Bo}eHt%m4x`3%%|CyBmUZw}u literal 88 scmca|c+)~A1{MYbC=g~~U|?i`a}5lDe3%@J{`b$|{C{R;7#AxI085V&^#A|> diff --git a/tests/juniper_atm1.out b/tests/juniper_atm1.out index 27f99bd0..c5cd9e01 100644 --- a/tests/juniper_atm1.out +++ b/tests/juniper_atm1.out @@ -1,2 +1,2 @@ Out - Juniper PCAP Flags [none]ATM1-PIC, cookie-len 4, cookie 0x30303030: [|juniper_hdr], length 808464432 + Juniper PCAP Flags [none]ATM1-PIC, cookie-len 4, cookie 0x30303030: [|juniper_hdr], length 262144 diff --git a/tests/juniper_atm1.pcap b/tests/juniper_atm1.pcap index fc29d299a7b00c2a1c6793594570e5a2f3fbe1fb..bb4f6e067ae9c137877591d7d5c778c364696890 100644 GIT binary patch delta 22 Ycmcb?W-viPfP(=9SQvcWoee+$04_%Zq5uE@ literal 856 zcmca|c+)~A1{MYbFxX(g!N9=K$pGbo#F!x*Uw3DS5?tg4ToTyC6|f0XNz8&u=1^#i x5qAAxpVQL&*sX<&4xrU=Hvky|$Q&fLArc!u6Bxb)_*Gz)1?d5&5DwWRA5k2CbV*uAxQ=+kffTLieb@3 cO*0J)j7T?*3@z9#8Mv?nxn~1*M-eRw07f>UT>t<8 diff --git a/tests/juniper_header-heapoverflow.out b/tests/juniper_header-heapoverflow.out index b13cfbee..72ab682b 100644 --- a/tests/juniper_header-heapoverflow.out +++ b/tests/juniper_header-heapoverflow.out @@ -1 +1 @@ -[|juniper_hdr], length 808464432 +[|juniper_hdr], length 262144 diff --git a/tests/juniper_header-heapoverflow.pcap b/tests/juniper_header-heapoverflow.pcap index 2b9664754c7099d1fc144c6e3fb18f501fc1dff0..260e303fff043d8e6c25db1839cb22c6d10854f7 100644 GIT binary patch delta 20 bcmb=bnxMkTz`(-b>+amjFwxL+q5}&6G(ZIM delta 20 acmb=bnxMjI00h47&aDg+4Lv71umAu)ECsFr diff --git a/tests/kday6.out b/tests/kday6.out index 0c11b5da..0b973d60 100644 --- a/tests/kday6.out +++ b/tests/kday6.out @@ -1,4 +1,4 @@ -FRF.16 Frag, seq 693, Flags [Begin], UI e8! IS-IS, length 301989913 +FRF.16 Frag, seq 693, Flags [Begin], UI e8! IS-IS, length 262137 L1 LSP, hlen: 27, v: 1, pdu-v: 1, sys-id-len: 6 (0), max-area: 131 (131) lsp-id: 8383.8383.834f.00-60, seq: 0x06418fcc, lifetime: 33667s chksum: 0x0900 (unverified), PDU length: 33667, Flags: [ Overload bit set, expense ATT bit set, L1 IS ] @@ -347,4 +347,3 @@ FRF.16 Frag, seq 693, Flags [Begin], UI e8! IS-IS, length 301989913 unknown TLV #58, length: 58 0x0000: 3a3a 3a3a 3a3a 3a3a 3a3a 3a3a 3a3a 3a3a 0x0010: 3a3a 3a [|isis] -EXIT CODE 00000100 diff --git a/tests/kday6.pcap b/tests/kday6.pcap index 7c6ab89a2288fef4e70c8b6489d7724bc6db77f9..2f3a6311efe35487ff2a291bf769742ce19c54b3 100644 GIT binary patch delta 26 icmcbkc29bO3O54-3q#A+bq@@fUrc6XcG_5&%L@Q}APE)# delta 637 zcmca7eMfDA3bz6SgHX%Xbq@@fUrc6XcG_5&%Uf>+1{M&C9wZ+EaPaX>W@c2JyopN~ z>JEB10IMAXZND{ER}m*T`69C_(|6vDO>SiNoh;94FnI!7=H&Gp&65u>aZF}slo68QlY!`NirmGrTAZ1Y0jNQl mNdQFYGRgr-MF>YrNeHC$KLY~;Py_4#|IgsI!WdjY)p`JM&W=X_ diff --git a/tests/l2tp-avp-overflow.out b/tests/l2tp-avp-overflow.out index a3b1db2d..9ed38674 100644 --- a/tests/l2tp-avp-overflow.out +++ b/tests/l2tp-avp-overflow.out @@ -36,4 +36,3 @@ IP (tos 0x30, ttl 48, id 12331, offset 0, flags [none], proto UDP (17), length 8 127.0.0.229.12416 > 127.236.0.1.1701: l2tp:[TL](560/2056) VENDOR0001:ATTR0023(0530) |... IP (tos 0x30, ttl 48, id 12336, offset 0, flags [none], proto UDP (17), length 12336, bad cksum 1f51 (->2a8b)!) 127.0.0.229.12416 > 127.236.0.1.1701: l2tp:[TL](560/2056) VENDOR0080:ATTR06a5(19e8) |... -EXIT CODE 00000100 diff --git a/tests/l2tp-avp-overflow.pcap b/tests/l2tp-avp-overflow.pcap index 5a6c40672f97456b8665f7592a917653768e7497..8732f3c4c1c24bba73ee42e27239e2d840e6564e 100644 GIT binary patch literal 1404 zcmca|c+)~A1{MYbD6nE+U|?i`a}7Xz2B19Ce{n8mFq?sagTWP~S{tZLP(HApf#GRA zLj$8h1KU!`7mN%an1H~50|*!x-YK(!%{2y+2$TN*2igDxJTQ|CkW6~RfYl_Bi(J5F zA)AEiCM8ri0Zpp^kLe}`>bVJO63AHy-x;dn2`5~>Bh^iKV*)7xfa*YT%fQ%nHxC?o z0~Hh4QU|SLLVPqP3^4Nq?PEe1GoR8UCZ5*g%3V5;DH%w zfMnzw2CPPcUGu-51?)-}u%S>RfoybFDxta(Xk`6=Ojk01T&Vzb2NhijGE&RnAJlyi z3K5ous(8W@m&eHtOQ6p{fcR(w2gsm`Hf)KD{?R5r8f~DIj7Z0*Wddey8;EEVhUPgW rSJE}wp4Q{az#xagN-n4)F~U*~no)6t>e=H0_{44;yybM?X delta 121 zcmcDS%s4@z*qwoaLF3bt|N9RfSTL>bHjtb>x8uw|76u`H77alL23e*)(O*C{Ku|CE wOBTWck#a!Xkix+5pA*Ok2XT~nt$>s?Bai?BF$lG7+qUQb6%?UB6i71y0D0~lod5s; diff --git a/tests/lldp_mgmt_addr_tlv_asan.out b/tests/lldp_mgmt_addr_tlv_asan.out index 10d75972..eaa3d3cb 100644 --- a/tests/lldp_mgmt_addr_tlv_asan.out +++ b/tests/lldp_mgmt_addr_tlv_asan.out @@ -1,8 +1,8 @@ -LLDP, length 1048572 +LLDP, length 262130 Management Address TLV (8), length 15 Management Address length 6, AFI Reserved (0), no AF printer ! Unknown Interface Numbering (10): 666137427 [|LLDP] -00:00:00:a0:d4:c3 > 06:04:e8:03:00:02, ethertype Unknown (0xb2a1), length 58785857: +00:00:00:a0:d4:c3 > 06:04:e8:03:00:02, ethertype Unknown (0xb2a1), length 262144: 0x0000: 0200 efff e5ff 804f 006e 0026 0000 0000 .......O.n.&.... 0x0010: 01 . diff --git a/tests/lldp_mgmt_addr_tlv_asan.pcap b/tests/lldp_mgmt_addr_tlv_asan.pcap index a7aec5904a2999060807888c306adedd1043e2ac..f6fd9499c78a15404ea4a2ca98c1df39fcc22c03 100644 GIT binary patch delta 19 ZcmXRbo1ntXz`!z5U55ooF-#1X2LLHg1DgN< delta 19 acmXRbo1ntX#UL{U|?i`a}5-cIZ!nn9uUTEn5I$MzyJVxN 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 0000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 0000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 0000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 0000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 0000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 0000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 0000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 000000000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 0000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 0000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0040: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0050: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 diff --git a/tests/nfs-attr-oobr.pcap b/tests/nfs-attr-oobr.pcap index 9c292ad2c2b12c1ed19e8634133decaac89e8794..9769a0e089e3d7412ff1912fb1f35d66ceafd89b 100644 GIT binary patch literal 5176 zcmca|c+)~A1{MYbC`e#nU|?i`a}7Xz1|)fyI$F_jbhR&t=C(Oe-G&6Jn}|Oyhr4}I zbPLbX)P_H$fnl)INN%LAu;%c#qn*axu5oTzR?7u8LqRty&nxXT7E z-A2*P??W-oE}~oLP%ACZ8Zs^(dSQER$b>C9scGoN$E9H%AD}oKdU3LCSj5S)A?b^u zms*CNi-%7AIy`bBA9DAOoN8@Y>lwIy1AY6ugSYSKMD?0tq{Qh^><6#r3P|L9v#CVC)8-GXL$6Su#I7GFt~z)4me9Dh#ZC-j3C}N u1A}M4<}7>$4aj5$VishTv}R)~QDLrjKyfw1&2U!(`-u>jgJ>9_rE39Frb-Y1 diff --git a/tests/olsr-oobr-2.pcap b/tests/olsr-oobr-2.pcap index 0ccd79cbd5c7fb277e9db7d277736a076c81d3d7..ca6123c221df847a51d2d4e829fc5e46806a3b89 100644 GIT binary patch delta 44 ocmbQiID>J5ni2~G2snTdh{eM2|D$w_7;^(d0Ei3ZPxJ@?0GJ5n$kB05O4q^F!TTakJ2$>%nb|yK&}~s=>Lfx0RY-y3PS(@ diff --git a/tests/oobr_parse_elements.pcap b/tests/oobr_parse_elements.pcap index 16d8848ec88c26ca2b0f3c346a23181dbe3115aa..560317ed0493c2799df308eccf01f234ed8f2b30 100644 GIT binary patch delta 22 bcmZ3(w47;z0_T4Q5MW_wnAoT?(f1YrML`CF delta 25 fcmZ3^w1#Pd0w)V21A_q&G)!z%ndp0Kq5~@cQjiB4 diff --git a/tests/ospf6_decode_v3_asan.pcap b/tests/ospf6_decode_v3_asan.pcap index 2d50b9c1f4c865d1807e7ef51aa5f7160df16280..f27648aeab078711f767afff170b56e1ececeaf0 100644 GIT binary patch delta 16 UcmXTQpP<0u&Hw@|3==in0UZ1S1fl={ diff --git a/tests/pgm_opts_asan_2.pcap b/tests/pgm_opts_asan_2.pcap index 28773fd9e8be45fcef242ce74cfd715c8fa9b72e..1c55ed7fdae7505e2bb29da625837976efdd20a0 100644 GIT binary patch delta 14 VcmZo?Y-gOH!otA7!Z1-I9sn0s0_6Yz delta 14 VcmZo?Y-gOH!t%eK(P^SaJOCm>1fl={ diff --git a/tests/pgm_opts_asan_3.pcap b/tests/pgm_opts_asan_3.pcap index bbe3b54178cdb882e94697b1251b28b4c4d31da8..f89aeef20ed44e687aa9ffff0a4db613cdcbcf41 100644 GIT binary patch delta 14 VcmZo=Y-OCF!otA7!Z1-I762C@0^a}t delta 14 VcmZo=Y-OCF!t%eK(P^SaEC3=51e^c> diff --git a/tests/pim_header_asan-2.pcap b/tests/pim_header_asan-2.pcap index 519ad284bd8e9d359ea956dba8b703e557b68d78..a1fdeb51724d59bf28922a68c5f3114a7430e0a1 100644 GIT binary patch delta 38 hcmeBU>|>mu!otA7!Z1<8UmQsN|LZvo$Op0z005Q$1>pby delta 38 lcmeBU>|>mu!qPB>QF)? 4501:5:1400::1300:33ed:1ee: PIMv2, length 30209 Register, cksum 0x000f (unverified), Flags [ none ] [|pim] -7e:c0:c1:c0:a0:ff > 00:0c:fb:4d:20:96, ethertype Unknown (0x7f08), length 671154210: +7e:c0:c1:c0:a0:ff > 00:0c:fb:4d:20:96, ethertype Unknown (0x7f08), length 262144: 0x0000: 0000 .. -04:01:0b:00:00:d7 > 00:00:00:00:00:00, ethertype Unknown (0xffff), length 671154210: +04:01:0b:00:00:d7 > 00:00:00:00:00:00, ethertype Unknown (0xffff), length 262144: 0x0000: fd00 .. diff --git a/tests/pim_header_asan-4.pcap b/tests/pim_header_asan-4.pcap index bd417a64cbd04ee62c536c9ca945c35b17010a19..dc873097dcae306b1e3e0055f49d71f2f767f3b3 100644 GIT binary patch delta 67 zcmZ3+xQuav3JU`R3&TVWFB1^W!1LQzVOrgRg9jG;ujgQ3`2RXeNtRK7L4W}Sfbw9# O!pP0QaQ*-PzYG9C{1CqY delta 67 zcmZ3+xQuav3X2W{5646eFB2sOMhym@-@Xdd>JA({u;70^2Lr?Z*HKEci~1P&kt1S|{-C$InjLX-qu delta 431 zcmbQhIYDxQ3QL56fx$$Lgvkz!91AC~Xsuqon)UyGRv?7}R<7;>^7kOb8W<)EvPd!Q zUOo9Eqw*vsekSJ65SGX!CL$3BBL_|`Y@bej`t&IUt2_(iCamH_T1%8N@lT(=0Udw> z7?>Cs;1&xCGk=DJ#-h~>1`J@pIN6ceX7UC`UN&A3|38qc&2$PBP{NE8LBTayfrW+n OKawc~-NFM4BOU+?u!=MQ diff --git a/tests/radiotap-heapoverflow.pcap b/tests/radiotap-heapoverflow.pcap index 82c6e19030935a7467267266c129019405f68a8e..31caddc6f6ea1cae4c0bc793e03f35204d2ec4d9 100644 GIT binary patch delta 22 ZcmZ3%WH3QNfP(=9SQrcpIDpvT7XT*01DOB- literal 296 ncmca|c+)~A1{MYbDBxgVV5nz+a}5|6VH^&S;4hfEkwyamuKPFJ diff --git a/tests/radius_attr_asan.pcap b/tests/radius_attr_asan.pcap index 9a7ed160d07b00faa7f6dacb8a0d90c94d57edf5..52b7385f868709d0d3094ca083f1c71371d8dfa7 100644 GIT binary patch delta 14 VcmZo?Y-gOH!otA7!Z1-I9sn0s0_6Yz delta 14 VcmZo?Y-gOH!t%eKk!hkvJOCj=1Y!UH diff --git a/tests/relts-0x80000000.pcap b/tests/relts-0x80000000.pcap index 0624709e24aad90166fd5f805a584a32a07c009d..17263616907defaf088aa9aca0052894a306aaab 100644 GIT binary patch delta 15 Wcmcb?bc1Pv3JU`R3&TbY14aNNR0Dee delta 15 Vcmcb?bc1Pv3X1^{Y}7Dd1OO-;1UCQx diff --git a/tests/rsvp_fast_reroute-oobr.pcap b/tests/rsvp_fast_reroute-oobr.pcap index cc1d72e252c74c75114ccee032fb12e4a4de67c7..486f096e194671c5d8519bde95c74dec67b66c90 100644 GIT binary patch delta 16 UcmXSlo}j>C%m4x`3==hs0UF=}sQ>@~ delta 40 mcmazpnxMd8#=yX!A;ri!QNviAfuX^Hq2d33W+tE@f(Zb%DhZJQ diff --git a/tests/rsvp_uni-oobr-1.pcap b/tests/rsvp_uni-oobr-1.pcap index 16d20240f619bba2bd27bb6dfb87a4d46db36e76..e2ce99621656b4587262fe2e57f93fdc2c7c0d08 100644 GIT binary patch delta 12 TcmXSjo1ntNz`(*VQNs)X5~l)s delta 31 ncmazmn4rSKBqhf*QNv8=n1%mmV0g;F`u{&GP|OO5pM?Sm1}*{q{|sFG|ADd$ z3^vk0LXUybOa!PzfPq0;gp-NC{{MFdo~MiqObl|2Kxv>90}HdmTQeZdB*n-yG0%ww TLd#9OBq5;mzaA(70uYS=5&<5h diff --git a/tests/slip-bad-direction.pcap b/tests/slip-bad-direction.pcap index a25dbda9128abf6676f200aa5fe567392289fd64..380c342b4b2b15c3f6f40287fc656f0d044eba55 100644 GIT binary patch delta 12 TcmebGpP<6Rz`(*VQ9~U75N85A delta 12 TcmebGpP<5G_Wb$ti5ltvA65k- diff --git a/tests/snmp-heapoverflow-1.out b/tests/snmp-heapoverflow-1.out index b8856074..58ed9179 100644 --- a/tests/snmp-heapoverflow-1.out +++ b/tests/snmp-heapoverflow-1.out @@ -1,19 +1,19 @@ -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0030: 3030 00 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0010: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 0x0020: 3030 3030 3030 3030 3030 3030 3030 3030 0000000000000000 diff --git a/tests/snmp-heapoverflow-1.pcap b/tests/snmp-heapoverflow-1.pcap index 83e57595ea311c79b5430f2f9195b10471c91ca4..cff254062f2f03359b2fb77100356612c168a771 100644 GIT binary patch literal 424 zcmca|c+)~A1{MYbC~#n4U|?i`a}7Xz1|)fyI&$ez^9&3)7+k@@=fGefh#Za#3&Ff5 VMgt~BW&;Bz77&*S$TDDI1OOcINB#f+ literal 2804 zcmca|c+)~A1{MYbC~#n4U|?i`a}8vekT@_!qx5J9U7&k$I!;Aq0SQsX1m;nGEp91ax literal 173 zcmca|c+)~A1{MYbC@^DSU|?i`a}8R7e3%@J=3sCIGaVQV1Yu$znqd)`*Ti7J#K^$H MR#2LREK3D801>z#LjV8( diff --git a/tests/stp-heapoverflow-1.out b/tests/stp-heapoverflow-1.out index f4cc053e..4229c39e 100644 --- a/tests/stp-heapoverflow-1.out +++ b/tests/stp-heapoverflow-1.out @@ -1,27 +1,27 @@ -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 30 00000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 30 00000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 30 00000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 30 00000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 30 00000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 30 00000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 30 00000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 30 00000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 30 00000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 30 00000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 30 00000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 30 00000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 30 00000 -[|stp 808464415] +[|stp 262127] diff --git a/tests/stp-heapoverflow-1.pcap b/tests/stp-heapoverflow-1.pcap index 21fcce936548293524b2d73f6eac9a9535e92b2c..3de3378cb60ee82a62f22d67b26ec6fc1d31873e 100644 GIT binary patch literal 514 zcmca|c+)~A1{MYbC=g~~U|?i`a}7Xz1|)fyIwX2j2~uDnF$a6NFc>&FF*7g#03KFM AJ^%m! literal 1076 zcmca|c+)~A1{MYbC=g~~U|?i`a}8{Oe3%@i^r%^+h2Us-jfNL`2v9Rk7+}fU3 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 000000 -STP 802.1d[|stp 808464415] +STP 802.1d[|stp 262127] diff --git a/tests/stp-heapoverflow-2.pcap b/tests/stp-heapoverflow-2.pcap index 83b572ffe4ddb6ad487c4037297f0325af15b1f8..0a92b00f8bbd79574bac16d6d4f8ac675e811d83 100644 GIT binary patch literal 528 zcmca|c+)~A1{MYbC=g*_U|?i`a}7Xz1|)fyI%IlO4I=!I!v)433gN?G;N-*%jA;P% C;!eE) literal 1076 zcmca|c+)~A1{MYbC=g*_U|?i`a}8{Oe3%@i^r%^+h2Us-jfNL`2v9Rk7+}fU3 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 30 000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 30 000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 30 000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 30 000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 30 000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 30 000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 30 000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 30 000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 30 000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 30 000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 30 000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 30 000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 30 000 -[|stp 808464415] +[|stp 262127] diff --git a/tests/stp-heapoverflow-3.pcap b/tests/stp-heapoverflow-3.pcap index 3f33b0dcda088150b62186e854957522c9220432..a289b4b0238bcd32ade95b60d6ed4b9cf22613f7 100644 GIT binary patch literal 486 vcmca|c+)~A1{MYbC=g^|U|?i`a}7Xz1|)fyIygP501^~~H5?cWoSc{e- 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 00000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 00000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 00000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 00000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 00000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 00000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 00000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 00000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 00000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 00000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 00000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 00000000 -30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 808464432: +30:30:30:30:30:30 > 30:30:30:30:30:30, ethertype Unknown (0x3030), length 262144: 0x0000: 3030 3030 3030 3030 00000000 -STP 802.1d, Config, Flags [Learn, Forward][|stp 808464415] +STP 802.1d, Config, Flags [Learn, Forward][|stp 262127] diff --git a/tests/stp-heapoverflow-4.pcap b/tests/stp-heapoverflow-4.pcap index 76d29593ef03bda9156e30e751bf770341922d1d..cd3b0fcc1b9c9ef4c0bec393548c1edfd65b9fc6 100644 GIT binary patch literal 556 zcmca|c+)~A1{MYbC=g>{U|?i`a}7Xz1|)fyI#ha86)Zf4Uq~<*I5{zc5`h5#712}c literal 1076 zcmca|c+)~A1{MYbC=g>{U|?i`a}8{Oe3%@i^r%^+h2Us-jfNL`2v9Rk7+}fU3FOb3JU`R3&TW>a{wa?1Tp{s delta 14 Ucmeyy_>FOb3X1^{Ow>3B04Em&?f?J) diff --git a/tests/tcp-auth-heapoverflow.pcap b/tests/tcp-auth-heapoverflow.pcap index a9f823dd359f13b2b184dd085ee17a2cefa65aa4..811548b2dad3daf78a931097916f6cbbf9fe8c57 100644 GIT binary patch delta 17 VcmeBT%$T6S;lKa_EDRGh8~`3#0_gw% delta 33 hcmd1kVw|ABk;K5jU;qRYH5?{-@=gq3gCJ(05CDnD2lfB} diff --git a/tests/tcp_header_heapoverflow.pcap b/tests/tcp_header_heapoverflow.pcap index 3d6b7c78c1b6e4067d745f92d4850ab07960975e..fdeed6c6a377481979bd9ff5209a94fd5da46c44 100644 GIT binary patch delta 17 WcmX@f6gEMDLyrLjSQsX1=m7vAvjXz~ literal 329 rcmca|c+)~A1{MYbD9~eIU|?i`a}5-cIZ!nm46a}nP#GIc--xFHvyeQM diff --git a/tests/tftp-heapoverflow.pcap b/tests/tftp-heapoverflow.pcap index 3f079fd290b7d579d02413855de83d2398ff4377..00d879d1971788e082e933436523224a95e57544 100644 GIT binary patch delta 12 Tcma!un4rSKz`(*VQNsWL5kCS} delta 12 Rcma!un4rR900a{?3;-2N0}=oL diff --git a/tests/udp-length-heapoverflow.pcap b/tests/udp-length-heapoverflow.pcap index 67e899fbfc617e48ebbe05dcbc5ba59341258372..a8c55b65300160c133fb6d518099bf33eef409dc 100644 GIT binary patch delta 17 WcmX@fU+XCAF literal 329 rcmca|c+)~A1{MYbC{SZyU|?i`a}5-cIZ!nm46a}nP?;c1--xFHwKhDM diff --git a/tests/vqp-oobr.pcap b/tests/vqp-oobr.pcap index 50be013da707b23ca8fab23db30089e7b9265796..8e7ef86438b5a0354682f2a3302045e9c55ba2cf 100644 GIT binary patch delta 17 VcmZo;ikqOoVa5OgEDRGh%m5u20>}UW delta 187 zcma!RW167A5y!y5;KRVMV4{XuJ@2-N;F}DL3@|YU0iYxhumJJ@dLSX)@RI>3&)@)3 zDa^olFBT{W(#;_7o8dD9gTjFYtLJhsxB^8P7#A`L3ieOq|JNYG^Lsf5o9Pz@a|RyX pm-X_`+07vG&si9l|Gxw&1_Mp7MKB(O^9jObVQ7Fbo&l+twE(L^B!~b2 diff --git a/tests/vtp_asan-2.out b/tests/vtp_asan-2.out index 0a83b098..9effe4f1 100644 --- a/tests/vtp_asan-2.out +++ b/tests/vtp_asan-2.out @@ -1,2 +1,2 @@ -FRF.16 Frag, seq 193, Flags [Begin, End], UI 08! VTPv69, Message Subset advertisement (0x02), length 2126400013 +FRF.16 Frag, seq 193, Flags [Begin, End], UI 08! VTPv69, Message Subset advertisement (0x02), length 262131 Domain name: , Seq number: 0, Config Rev fb499603[|vtp] diff --git a/tests/vtp_asan-2.pcap b/tests/vtp_asan-2.pcap index 31a9f5e1a262d612e6c433e801260ac09743d9e5..cb5b581e2b53d8da6bd7023f069bcc2e65b76460 100644 GIT binary patch delta 12 Tcmd1FnV`bLz`(*VQNslQ6CVPS delta 12 Tcmd1FnV`ZV<+ZPFqJ|3q8!H4Z diff --git a/tests/vtp_asan-3.out b/tests/vtp_asan-3.out index 695a9e90..bd0c5c42 100644 --- a/tests/vtp_asan-3.out +++ b/tests/vtp_asan-3.out @@ -1,2 +1,2 @@ -FRF.16 Frag, seq 193, Flags [Begin, End], UI 08! VTPv69, Message Subset advertisement (0x02), length 2126400013 +FRF.16 Frag, seq 193, Flags [Begin, End], UI 08! VTPv69, Message Subset advertisement (0x02), length 262131 Domain name: , Seq number: 0, Config Rev 4040404[|vtp] diff --git a/tests/vtp_asan-3.pcap b/tests/vtp_asan-3.pcap index 98ad48bd6b81fbe27ebc624c4f4a1c870549dbfe..254e9bac06a3c5ee8c3ba7f0a95f04060b97211f 100644 GIT binary patch delta 14 VcmdnVxRY^$3JU`R3&TW>i2xj&1A71f delta 14 VcmdnVxRY^$3X7E2zPgDT69FWs1s4DS diff --git a/tests/vtp_asan.out b/tests/vtp_asan.out index ae9e8ad7..dd6ced4a 100644 --- a/tests/vtp_asan.out +++ b/tests/vtp_asan.out @@ -1,4 +1,4 @@ -FRF.16 Frag, seq 193, Flags [Begin, End], UI 08! VTPv69, Message Subset advertisement (0x02), length 2126400013 +FRF.16 Frag, seq 193, Flags [Begin, End], UI 08! VTPv69, Message Subset advertisement (0x02), length 262131 Domain name: , Seq number: 0[|vtp] [Invalid header: caplen==0] [Invalid header: caplen==0, len==0] diff --git a/tests/vtp_asan.pcap b/tests/vtp_asan.pcap index 515828a0b606ab2f659b2ce2e4f213054025ecd1..953b7f0dbda3e972b9c292f0364598bc178ec3bd 100644 GIT binary patch delta 14 VcmbQmIE!(D3JU`R3&TW>A^;gz10DbX delta 14 VcmbQmIE!(D3X7E2zPgDTMF1gV1iAnK diff --git a/tests/wb-oobr.pcap b/tests/wb-oobr.pcap index 40b5668e6f6f0e283b19a5449c43db46d309b4df..818b0c3037d4b7b7d305495480ff0d1f3b4436ab 100644 GIT binary patch delta 66 wcmeBS?qQyw!otA7!Z2BZ(F)9%mJA$5E>{TI&r5eL^6(1Z?XU*530(^Kv4kt{|=x4