-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ips handling/v31 #7393
Ips handling/v31 #7393
Changes from all commits
92a6cb6
f406f89
7d01153
e90a7b1
11f25be
bef5cad
a21a682
6f7c4a1
7d2f635
878ea78
88dcfea
def8b8f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -802,6 +802,10 @@ const struct DecodeEvents_ DEvents[] = { | |
"stream.pkt_retransmission", | ||
STREAM_PKT_RETRANSMISSION, | ||
}, | ||
{ | ||
"stream.pkt_spurious_retransmission", | ||
STREAM_PKT_SPURIOUS_RETRANSMISSION, | ||
Comment on lines
+806
to
+807
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Needs rule? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes, disabled by default though. This is quite common. Might not even warrant an event, but I feel if suri classifies it as something we should be able to match on it |
||
}, | ||
{ | ||
"stream.pkt_bad_window_update", | ||
STREAM_PKT_BAD_WINDOW_UPDATE, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So if a parser enters an error state, a policy is applied, perhaps event to the flow. On detect error, we disable the parser, will any policy be applied to those packets that will now no longer be parsed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
policy for protocol detection exceptions isn't implemented. This change is just more clearly separate the errors by parser and pd
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
so the above should change the existing pd exception behavior in any way