Project

General

Profile

Actions

Bug #2069

open

logging: payload may not represent traffic the generated alert (eve and unified2)

Added by alienvault alienvault about 7 years ago. Updated over 3 years ago.

Status:
Assigned
Priority:
Normal
Assignee:
Target version:
Affected Versions:
Effort:
Difficulty:
Label:

Description

Wrong 'data' binary content is saved to Suricata unified.alert log file if several rules are triggered by the same captured packet

Precondition steps: Latest AV USM AIO 5.X with suricata 3.2

Steps to reproduce:

1. Clean up /var/log/suricata/ dir. Restart suricata

2. Replay malware content in the same network suricate is running:
tcpreplay --topspeed --intf1=eth0 malware.pcap

2. Install idstools to parse unified2 binary packets:
pip install idstools
cp idstools-u2bin /usr/local/bin/idstools-u2bin
cp u2bin.py /usr/local/lib/python2.7/dist-packages/idstools/scripts/u2bin.py

idstools-u2bin suricata3.2_unified2.alert.1489595041 > unified2.bin

3. Get SID list: grep signature-id unified2.bin

4. Examine 'data' binary content in unified2.bin file.
FIRST 4 log records are OK. 'data' binary content really matches rule content
OK:
VirtualUSMAllInOne:~# grep sid:2018644 /etc/suricata/rules/*.rules
VirtualUSMAllInOne:~# grep sid:2000419 /etc/suricata/rules/*.rules

Rest of log records 'data' looks bad
BAD:
VirtualUSMAllInOne:~# grep sid:2008438 /etc/suricata/rules/*.rules
VirtualUSMAllInOne:~# grep sid:2018572 /etc/suricata/rules/*.rules

BAD Content:
sid:2008438
content:"Content-Type|3a| text/plain";
content:"MZ";
content:"PE|00 00|";

sid:2018572
content:"MZ";
content:"PE|00 00|";

sid:2014520
content:"Content-Disposition";
content:"attachment";
content:"MZ";

Actually, the rest of rules are also triggered by windows executable content ('MZ' & 'PE' are .exe markers)
So last 3 records should contain the SAME content as previous 2 records
But looks like wrong binary is written into the unified2 log


Files

idstools-u2bin (228 Bytes) idstools-u2bin alienvault alienvault, 03/24/2017 07:55 AM
suricata3.2_unified2.alert.1489595041 (15.4 KB) suricata3.2_unified2.alert.1489595041 alienvault alienvault, 03/24/2017 07:55 AM
u2bin.py (6.42 KB) u2bin.py alienvault alienvault, 03/24/2017 07:55 AM
malware.pcap (185 KB) malware.pcap alienvault alienvault, 03/24/2017 07:55 AM
unified2.bin (50.7 KB) unified2.bin alienvault alienvault, 03/24/2017 07:55 AM

Related issues 1 (1 open0 closed)

Related to Suricata - Bug #3480: EVE JSON - Incorrect Packet LoggedNewOISF DevActions
Actions #1

Updated by Victor Julien about 7 years ago

  • Subject changed from Wrong 'data' binary content is saved to Suricata unified.alert log file if several rules are triggered by the same captured packet to unified2: wrong payload logged
Actions #2

Updated by Victor Julien about 7 years ago

  • Status changed from New to Assigned
  • Assignee set to Jason Ish
  • Target version set to 70

Can you check this one Jason?

Actions #3

Updated by Jason Ish about 7 years ago

Yes, confirmed what they are seeing in their output. Will try to reproduce now.

Actions #4

Updated by Jason Ish about 7 years ago

I was able to isolate a reproduction with just rule 2008438. It turns out that the payload being logged was about 40k into the stream which aligns with the libhtp.default-config.response-body-minimal-inspect-size.

It turns out that Suricata is working as designed, but the output may not be ideal. The HTTP application-layer is saving up to 40kb of response data before running detection on it. Once 40kb has been buffered, detection is run, rule 2008438 triggers and the logger dumps payload data from the stream segments. The problem is that the TCP segments in memory are well past triggering traffic, and are somewhere around 40kb into the packet, so you get data much deeper into the stream logged than the triggering packet, and we do realize this is not ideal.

Note that this does not happen with the request buffers - while a similar approach is taken, the request buffers are much smaller, so when they trigger, the expected payload is still in memory.

Some tweaks can be done with configuration such as lowering response-body-minimal-inspect-size to 1500 which will run detection on the response after just 1500 bytes, but you may lose accuracy in the case where data being looked for passes 1500 byte boundaries, but looking into these values could be a possible work-around for now.

Note that this affects eve as well and is not specific to unified2.

Actions #5

Updated by Jason Ish about 7 years ago

  • Subject changed from unified2: wrong payload logged to logging: payload may not represent traffic the generated alert (eve and unified2)

Updating title to better represent this issue.

As noted in the previous comment, the payload is taken from the stream buffers which may have advanced past the data actually generating the alert.

One thought was to not use the stream buffer but use the buffer from the application layer that is passed into detection. The main issue here is that one rule can use many such buffers (http_uri, http_method, etc), so then there is the question of which buffer to choose.

Fortunately the eve/json output is flexible enough here that we could include all the buffers in a meaningful way, but unified2 does not.

I do realize we could match up buffers to unified2 extra data, and I do realize Snort3 is coming with unified2 enhancements, but I don't think keeping pace with unified2 will be a priority for us as we have eve.

Actions #6

Updated by Andreas Herz almost 5 years ago

Jason did you have a chance to see how to handle that with EVE? unified 2 isn't a target anymore so at least on half of the issue gone :)

Actions #7

Updated by Jason Ish almost 5 years ago

Andreas Herz wrote:

Jason did you have a chance to see how to handle that with EVE? unified 2 isn't a target anymore so at least on half of the issue gone :)

With Eve we could have have buffers with different names, http_uri_buffer, http_method_buffer. Thats just off the top of my head and now sure if we'd really end up naming it those. But no further investigation has gone into this issue from the initial confirmation.

Actions #8

Updated by Victor Julien over 3 years ago

  • Target version changed from 70 to TBD
Actions #9

Updated by Jason Ish about 2 years ago

  • Related to Bug #3480: EVE JSON - Incorrect Packet Logged added
Actions

Also available in: Atom PDF