Sometimes I see multiple R flags in the conn.log history field. Example (field order alphabetized due to attempts to prettify JSON):
{
conn_state: “RSTO”
duration: 3.856864
history: “FhAdRR”
“id.orig_h”: “REDACTED”
“id.orig_p”: 3793
“id.resp_h”: “REDACTED”
“id.resp_p”: 5900
local_orig: false
local_resp: true
missed_bytes: 0
orig_bytes: 0
orig_ip_bytes: 160
orig_pkts: 4
proto: “tcp”
resp_bytes: 12
resp_ip_bytes: 152
resp_pkts: 3
ts: 1527874960.128133
tunnel_parents:
uid: “C83wr8ZHFD8PK5lsl”
}
I’m not certain how to interpret this. I assume that means Bro detected multiple RST packets from the originator, but that also contradicts the documentation:
Multiple packets of the same type will only be noted once (e.g. we only record one “d” in each direction, regardless of how many data packets were seen.)
(from https://www.bro.org/sphinx/scripts/base/protocols/conn/main.bro.html)
Additionally, I sometimes see an H flag in the conn.log. I would only expect to see a SYN-ACK from the responder, so I’m wondering why Bro’s heuristics didn’t flip the connection. Example:
{
conn_state: “RSTO”
duration: 10.980346
history: “HadfR”
“id.orig_h”: “REDACTED”
“id.orig_p”: 5228
“id.resp_h”: “REDACTED”
“id.resp_p”: 51157
local_orig: false
local_resp: true
missed_bytes: 0
orig_bytes: 148
orig_ip_bytes: 140
orig_pkts: 2
proto: “tcp”
resp_bytes: 611
resp_ip_bytes: 712
resp_pkts: 7
ts: 1527878613.810056
tunnel_parents: Array
uid: “CU7Jnp4p9P9YCbIXy”
}