<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=utf-8">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    Hi,<br>
    <br>
    I'm having problems with IP-in-IP tunneled traffic which contains an
    ethernet frame check sequence (FCS).<br>
    <br>
    1) Bro seems to attribute the FCS to the length of the outer IP
    packet and then complains that the inner IP packet is too small
    compared to the capture length (in weird.log: "inner_IP_payload_length_mismatch")<br>
    <br>
    Then I thought it would be ok to simply drop the corresponding check
    in Sessions.c: ParseIPPacket() because too much content shouldn't
    "hurt".<br>
    <br>
        -     if ( (uint32)caplen != inner-&gt;TotalLen() )<br>
        -        return (uint32)caplen &lt; inner-&gt;TotalLen() ? -1 :
    1;<br>
    <br>
    <br>
        + if ( (uint32)caplen &lt; inner-&gt;TotalLen() )<br>
        +        return -1;<br>
    <br>
    <br>
    Would that be ok in your opinion? If not, what would be a better way
    to deal with this?<br>
    <br>
    2) With the above patch applied, bro correctly sees the inner
    traffic, but from time to time it segfaults (every other day
    roughtly). Until now i figured out the following information, but
    cannot really see what's going wrong:<br>
    <br>
        a) bro always crashes at a tunneled TCP packet with active reset
    flag<br>
        b) I see very few such packets (it might be that the crashing
    one is the only within quite some time before the crash: I don't
    have all traffic available) <br>
        c) I cannot reproduce the problem by simply starting bro on a
    pcap file with the offending packet (and ~100MB traffic before the
    crash) (even valgrind doesn't report anything useful)<br>
      <br>
    <br>
    From the stacktrace of the core file (cf. below) it looks as if
    PacketWithRst() somehow triggered the destructor of (my own) SIP
    plugin. However, I have no idea how that could happen.<br>
    <br>
    Could you help me with this problem?<br>
    <br>
    Thanks,<br>
    <br>
    Dirk<br>
    <br>
    <meta http-equiv="content-type" content="text/html; charset=utf-8">
    <span style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline
      !important; float: none; background-color: rgb(245, 245, 245);">#0
      std::_List_base&lt;plugin::BifItem,
      std::allocator&lt;plugin::BifItem&gt; &gt;::_M_clear
      (this=this@entry=0x2f373b0) at
      /usr/include/c++/4.7/bits/list.tcc:74</span><br style="color:
      rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 14px;
      font-style: normal; font-variant: normal; font-weight: normal;
      letter-spacing: normal; line-height: 20px; orphans: auto;
      text-align: start; text-indent: 0px; text-transform: none;
      white-space: normal; widows: 1; word-spacing: 0px;
      -webkit-text-stroke-width: 0px; background-color: rgb(245, 245,
      245);">
    <span style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline
      !important; float: none; background-color: rgb(245, 245, 245);">#1
      0x00000000006a0ade in ~_List_base (this=0x2f373b0,
      __in_chrg=&lt;optimized out&gt;) at
      /usr/include/c++/4.7/bits/stl_list.h:379</span><br style="color:
      rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 14px;
      font-style: normal; font-variant: normal; font-weight: normal;
      letter-spacing: normal; line-height: 20px; orphans: auto;
      text-align: start; text-indent: 0px; text-transform: none;
      white-space: normal; widows: 1; word-spacing: 0px;
      -webkit-text-stroke-width: 0px; background-color: rgb(245, 245,
      245);">
    <span style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline
      !important; float: none; background-color: rgb(245, 245, 245);">#2
      ~list (this=0x2f373b0, __in_chrg=&lt;optimized out&gt;) at
      /usr/include/c++/4.7/bits/stl_list.h:436</span><br style="color:
      rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 14px;
      font-style: normal; font-variant: normal; font-weight: normal;
      letter-spacing: normal; line-height: 20px; orphans: auto;
      text-align: start; text-indent: 0px; text-transform: none;
      white-space: normal; widows: 1; word-spacing: 0px;
      -webkit-text-stroke-width: 0px; background-color: rgb(245, 245,
      245);">
    <span style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline
      !important; float: none; background-color: rgb(245, 245, 245);">#3
      plugin::Plugin::~Plugin (this=0x2f37360, __in_chrg=&lt;optimized
      out&gt;) at bro/src/plugin/Plugin.cc:136</span><br style="color:
      rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 14px;
      font-style: normal; font-variant: normal; font-weight: normal;
      letter-spacing: normal; line-height: 20px; orphans: auto;
      text-align: start; text-indent: 0px; text-transform: none;
      white-space: normal; widows: 1; word-spacing: 0px;
      -webkit-text-stroke-width: 0px; background-color: rgb(245, 245,
      245);">
    <span style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline
      !important; float: none; background-color: rgb(245, 245, 245);">#4
      0x00007f1fa7d2ef77 in ~Plugin (this=0x2f37360,
      __in_chrg=&lt;optimized out&gt;) at sip/src/Plugin.cc:8</span><br
      style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px;
      background-color: rgb(245, 245, 245);">
    <span style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline
      !important; float: none; background-color: rgb(245, 245, 245);">#5
      plugin::Consistec_SIP::Plugin::~Plugin (this=0x2f37360,
      __in_chrg=&lt;optimized out&gt;) at sip/src/Plugin.cc:8</span><br
      style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px;
      background-color: rgb(245, 245, 245);">
    <span style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline
      !important; float: none; background-color: rgb(245, 245, 245);">#6
      0x000000000079d4bd in PacketWithRST (this=0x3482680) at
      bro/src/analyzer/protocol/tcp/TCP.cc:1810</span><br style="color:
      rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 14px;
      font-style: normal; font-variant: normal; font-weight: normal;
      letter-spacing: normal; line-height: 20px; orphans: auto;
      text-align: start; text-indent: 0px; text-transform: none;
      white-space: normal; widows: 1; word-spacing: 0px;
      -webkit-text-stroke-width: 0px; background-color: rgb(245, 245,
      245);">
    <span style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline
      !important; float: none; background-color: rgb(245, 245, 245);">#7
      analyzer::tcp::TCP_Analyzer::DeliverPacket (this=0x3482680, len=0,
      data=0x7f1fa16f9aca &lt;Address 0x7f1fa16f9aca out of bounds&gt;,
      is_orig=false, seq=&lt;optimized out&gt;, ip=0x34e05c0, caplen=0)</span><br
      style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px;
      background-color: rgb(245, 245, 245);">
    <span style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline
      !important; float: none; background-color: rgb(245, 245, 245);">at
      bro/src/analyzer/protocol/tcp/TCP.cc:1280</span><br style="color:
      rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 14px;
      font-style: normal; font-variant: normal; font-weight: normal;
      letter-spacing: normal; line-height: 20px; orphans: auto;
      text-align: start; text-indent: 0px; text-transform: none;
      white-space: normal; widows: 1; word-spacing: 0px;
      -webkit-text-stroke-width: 0px; background-color: rgb(245, 245,
      245);">
    <span style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline
      !important; float: none; background-color: rgb(245, 245, 245);">#8
      0x0000000000807a6a in analyzer::Analyzer::NextPacket
      (this=0x3482680, len=20, data=&lt;optimized out&gt;,
      is_orig=&lt;optimized out&gt;, seq=&lt;optimized out&gt;,
      ip=&lt;optimized out&gt;, caplen=20)</span><br style="color:
      rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 14px;
      font-style: normal; font-variant: normal; font-weight: normal;
      letter-spacing: normal; line-height: 20px; orphans: auto;
      text-align: start; text-indent: 0px; text-transform: none;
      white-space: normal; widows: 1; word-spacing: 0px;
      -webkit-text-stroke-width: 0px; background-color: rgb(245, 245,
      245);">
    <span style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline
      !important; float: none; background-color: rgb(245, 245, 245);">at
      bro/src/analyzer/Analyzer.cc:222</span><br style="color: rgb(51,
      51, 51); font-family: Arial, sans-serif; font-size: 14px;
      font-style: normal; font-variant: normal; font-weight: normal;
      letter-spacing: normal; line-height: 20px; orphans: auto;
      text-align: start; text-indent: 0px; text-transform: none;
      white-space: normal; widows: 1; word-spacing: 0px;
      -webkit-text-stroke-width: 0px; background-color: rgb(245, 245,
      245);">
    <span style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline
      !important; float: none; background-color: rgb(245, 245, 245);">#9
      0x000000000055ecee in Connection::NextPacket (this=0x2f48c00,
      t=&lt;optimized out&gt;, is_orig=&lt;optimized out&gt;,
      ip=&lt;optimized out&gt;, len=&lt;optimized out&gt;,
      caplen=&lt;optimized out&gt;, data=&lt;optimized out&gt;,
      record_packet=@0x7ffc33d50898: 1,</span><br style="color: rgb(51,
      51, 51); font-family: Arial, sans-serif; font-size: 14px;
      font-style: normal; font-variant: normal; font-weight: normal;
      letter-spacing: normal; line-height: 20px; orphans: auto;
      text-align: start; text-indent: 0px; text-transform: none;
      white-space: normal; widows: 1; word-spacing: 0px;
      -webkit-text-stroke-width: 0px; background-color: rgb(245, 245,
      245);">
    <span style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline
      !important; float: none; background-color: rgb(245, 245, 245);">record_content=@0x7ffc33d5089c:
      1, hdr=0x7ffc33d50b10, pkt=0x7f1fa16f9aa2 &lt;Address
      0x7f1fa16f9aa2 out of bounds&gt;, hdr_size=0) at
      bro/src/Conn.cc:260</span><br style="color: rgb(51, 51, 51);
      font-family: Arial, sans-serif; font-size: 14px; font-style:
      normal; font-variant: normal; font-weight: normal; letter-spacing:
      normal; line-height: 20px; orphans: auto; text-align: start;
      text-indent: 0px; text-transform: none; white-space: normal;
      widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px;
      background-color: rgb(245, 245, 245);">
    <span style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline
      !important; float: none; background-color: rgb(245, 245, 245);">#10
      0x00000000005f819a in NetSessions::DoNextPacket
      (this=this@entry=0xf25000, t=1468916092.7505391, t@entry=&lt;error
      reading variable: Could not find type for
      DW_OP_GNU_const_type&gt;, hdr=hdr@entry=0x7ffc33d50b10,</span><br
      style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px;
      background-color: rgb(245, 245, 245);">
    <span style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline
      !important; float: none; background-color: rgb(245, 245, 245);">ip_hdr=ip_hdr@entry=0x34e05c0,
      pkt=pkt@entry=0x7f1fa16f9aa2 &lt;Address 0x7f1fa16f9aa2 out of
      bounds&gt;, hdr_size=hdr_size@entry=0, encapsulation=0x0,
      encapsulation@entry=0x34b3138)</span><br style="color: rgb(51, 51,
      51); font-family: Arial, sans-serif; font-size: 14px; font-style:
      normal; font-variant: normal; font-weight: normal; letter-spacing:
      normal; line-height: 20px; orphans: auto; text-align: start;
      text-indent: 0px; text-transform: none; white-space: normal;
      widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px;
      background-color: rgb(245, 245, 245);">
    <span style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline
      !important; float: none; background-color: rgb(245, 245, 245);">at
      bro/src/Sessions.cc:757</span><br style="color: rgb(51, 51, 51);
      font-family: Arial, sans-serif; font-size: 14px; font-style:
      normal; font-variant: normal; font-weight: normal; letter-spacing:
      normal; line-height: 20px; orphans: auto; text-align: start;
      text-indent: 0px; text-transform: none; white-space: normal;
      widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px;
      background-color: rgb(245, 245, 245);">
    <span style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline
      !important; float: none; background-color: rgb(245, 245, 245);">#11
      0x00000000005f91a4 in NetSessions::DoNextInnerPacket
      (this=0xf25000, t=1468916092.7505391, hdr=&lt;optimized out&gt;,
      inner=0x34e05c0, prev=&lt;optimized out&gt;, ec=...)</span><br
      style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px;
      background-color: rgb(245, 245, 245);">
    <span style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline
      !important; float: none; background-color: rgb(245, 245, 245);">at
      bro/src/Sessions.cc:805</span><br style="color: rgb(51, 51, 51);
      font-family: Arial, sans-serif; font-size: 14px; font-style:
      normal; font-variant: normal; font-weight: normal; letter-spacing:
      normal; line-height: 20px; orphans: auto; text-align: start;
      text-indent: 0px; text-transform: none; white-space: normal;
      widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px;
      background-color: rgb(245, 245, 245);">
    <span style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline
      !important; float: none; background-color: rgb(245, 245, 245);">#12
      0x00000000005f88ca in NetSessions::DoNextPacket
      (this=this@entry=0xf25000, t=1468916092.7505391, t@entry=&lt;error
      reading variable: Could not find type for
      DW_OP_GNU_const_type&gt;, hdr=hdr@entry=0xf762a0,
      ip_hdr=&lt;optimized out&gt;,</span><br style="color: rgb(51, 51,
      51); font-family: Arial, sans-serif; font-size: 14px; font-style:
      normal; font-variant: normal; font-weight: normal; letter-spacing:
      normal; line-height: 20px; orphans: auto; text-align: start;
      text-indent: 0px; text-transform: none; white-space: normal;
      widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px;
      background-color: rgb(245, 245, 245);">
    <span style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline
      !important; float: none; background-color: rgb(245, 245, 245);">ip_hdr@entry=0x7ffc33d50e60,
      pkt=pkt@entry=0x7f1fa16f9a80 &lt;Address 0x7f1fa16f9a80 out of
      bounds&gt;, hdr_size=hdr_size@entry=14,
      encapsulation=encapsulation@entry=0x0)</span><br style="color:
      rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 14px;
      font-style: normal; font-variant: normal; font-weight: normal;
      letter-spacing: normal; line-height: 20px; orphans: auto;
      text-align: start; text-indent: 0px; text-transform: none;
      white-space: normal; widows: 1; word-spacing: 0px;
      -webkit-text-stroke-width: 0px; background-color: rgb(245, 245,
      245);">
    <span style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline
      !important; float: none; background-color: rgb(245, 245, 245);">at
      bro/src/Sessions.cc:665</span><br style="color: rgb(51, 51, 51);
      font-family: Arial, sans-serif; font-size: 14px; font-style:
      normal; font-variant: normal; font-weight: normal; letter-spacing:
      normal; line-height: 20px; orphans: auto; text-align: start;
      text-indent: 0px; text-transform: none; white-space: normal;
      widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px;
      background-color: rgb(245, 245, 245);">
    <span style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline
      !important; float: none; background-color: rgb(245, 245, 245);">#13
      0x00000000005f96d6 in NetSessions::NextPacket (this=0xf25000,
      t=1468916092.7505391, hdr=0xf762a0, pkt=0x7f1fa16f9a80 &lt;Address
      0x7f1fa16f9a80 out of bounds&gt;, hdr_size=14)</span><br
      style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px;
      background-color: rgb(245, 245, 245);">
    <span style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline
      !important; float: none; background-color: rgb(245, 245, 245);">at
      bro/src/Sessions.cc:231</span><br style="color: rgb(51, 51, 51);
      font-family: Arial, sans-serif; font-size: 14px; font-style:
      normal; font-variant: normal; font-weight: normal; letter-spacing:
      normal; line-height: 20px; orphans: auto; text-align: start;
      text-indent: 0px; text-transform: none; white-space: normal;
      widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px;
      background-color: rgb(245, 245, 245);">
    <span style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline
      !important; float: none; background-color: rgb(245, 245, 245);">#14
      0x00000000005c8048 in net_packet_dispatch (t=1468916092.7505391,
      hdr=0xf762a0, pkt=0x7f1fa16f9a80 &lt;Address 0x7f1fa16f9a80 out of
      bounds&gt;, hdr_size=14, src_ps=0xf76160)</span><br style="color:
      rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 14px;
      font-style: normal; font-variant: normal; font-weight: normal;
      letter-spacing: normal; line-height: 20px; orphans: auto;
      text-align: start; text-indent: 0px; text-transform: none;
      white-space: normal; widows: 1; word-spacing: 0px;
      -webkit-text-stroke-width: 0px; background-color: rgb(245, 245,
      245);">
    <span style="color: rgb(51, 51, 51); font-family: Arial, sans-serif;
      font-size: 14px; font-style: normal; font-variant: normal;
      font-weight: normal; letter-spacing: normal; line-height: 20px;
      orphans: auto; text-align: start; text-indent: 0px;
      text-transform: none; white-space: normal; widows: 1;
      word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline
      !important; float: none; background-color: rgb(245, 245, 245);">at
      bro/src/Net.cc:277</span><br>
    <pre class="moz-signature" cols="72">-- 

Dr.-Ing. Dirk Leinenbach - Leitung Softwareentwicklung
consistec Engineering &amp; Consulting GmbH
------------------------------------------------------------------

Europaallee 5                      Fon:   +49 (0)681 / 959044-0
D-66113 Saarbrücken                Fax:   +49 (0)681 / 959044-11
<a class="moz-txt-link-freetext" href="http://www.consistec.de">http://www.consistec.de</a>            e-mail: <a class="moz-txt-link-abbreviated" href="mailto:dirk.leinenbach@consistec.de">dirk.leinenbach@consistec.de</a>

Registergericht: Amtsgericht Saarbrücken
Registerblatt:   HRB12003
Geschäftsführer: Dr. Thomas Sinnwell, Volker Leiendecker, Stefan Sinnwell </pre>
  </body>
</html>