-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
542e1e6
commit ed2c3ae
Showing
4 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
PCAP | ||
==== | ||
|
||
Pcap from https://redmine.openinfosecfoundation.org/issues/2369 |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
alert http1:response_not_started any any -> any any (sid:1;) | ||
alert http1:response_line any any -> any any (sid:2;) | ||
alert http1:response_headers any any -> any any (sid:3;) | ||
alert http1:response_body any any -> any any (sid:4;) | ||
alert http1:response_trailer any any -> any any (sid:5;) | ||
alert http1:response_complete any any -> any any (sid:6;) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
requires: | ||
min-version: 8 | ||
|
||
checks: | ||
- filter: | ||
count: 1 | ||
match: | ||
event_type: http | ||
http.url: "/~regit/ids-suricata-esiea.pdf" | ||
- filter: | ||
count: 1 | ||
match: | ||
event_type: alert | ||
alert.signature_id: 1 # not started | ||
- filter: | ||
count: 1 | ||
match: | ||
event_type: alert | ||
alert.signature_id: 2 # request_line | ||
- filter: | ||
count: 1 | ||
match: | ||
event_type: alert | ||
alert.signature_id: 3 # header | ||
- filter: | ||
count: 443 | ||
match: | ||
event_type: alert | ||
alert.signature_id: 4 # body update | ||
- filter: | ||
count: 1 | ||
match: | ||
event_type: alert | ||
alert.signature_id: 5 # trailer | ||
- filter: | ||
count: 1 | ||
match: | ||
event_type: alert | ||
alert.signature_id: 6 # complete |