Skip to content
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

tests: add rule type check for flowbits v8 #1532

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions tests/rules/flowbits/test.rules
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
alert ip any any -> any any (msg:"Flowbit set"; flowbits:set,fb1; sid:1;)
alert ip any any -> any any (msg:"Flowbit set"; flowbits:set,fb2; sid:2;)
alert ip any any -> any any (msg:"Flowbit isset ored flowbits"; flowbits:isset,fb1|fb2; sid:3;)
alert ip any any -> any any (msg:"Flowbit isset ored flowbits"; flowbits:isset,fb3|fb1; sid:4;)
alert ip any any -> any any (msg:"Flowbit isset ored flowbits"; flowbits:isset,fb3|fb4; sid:5;)
alert ip any any -> any any (msg:"Flowbit isnotset ored flowbits"; flowbits:isnotset,fb5|fb6 ; sid:6;)
alert ip any any -> any any (msg:"Flowbit isnotset ored flowbits"; flowbits:isnotset, fb1|fb2 ; sid:7;)
alert ip any any -> any any (msg:"Flowbit unset"; flowbits:unset,fb1; sid:8;)
alert ip any any -> any any (msg:"Flowbit toggle"; flowbits:toggle,fb1; sid:9;)
alert ip any any -> any any (msg:"Flowbit isset"; flowbits:isset,fb1; sid:10;)
alert ip any any -> any any (msg:"Flowbit isset and flowbits"; flowbits:isset,fb1; flowbits:isset,fb2; sid:11;)
alert ip any any -> any any (msg:"Flowbit isset and flowbits"; flowbits:isset,fb1; flowbits:isset,fb5; sid:12;)
115 changes: 115 additions & 0 deletions tests/rules/flowbits/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
requires:
min-version: 8.0
pcap: false

args:
- --engine-analysis

checks:
- filter:
filename: rules.json
count: 1
match:
id: 1
lists.postmatch.matches[0].name: "flowbits"
lists.postmatch.matches[0].flowbits.cmd: "set"
lists.postmatch.matches[0].flowbits.names[0]: "fb1"
- filter:
filename: rules.json
count: 1
match:
id: 2
lists.postmatch.matches[0].name: "flowbits"
lists.postmatch.matches[0].flowbits.cmd: "set"
lists.postmatch.matches[0].flowbits.names[0]: "fb2"
- filter:
filename: rules.json
count: 1
match:
id: 3
lists.packet.matches[0].name: "flowbits"
lists.packet.matches[0].flowbits.cmd: "isset"
lists.packet.matches[0].flowbits.names[0]: "fb1"
lists.packet.matches[0].flowbits.names[1]: "fb2"
- filter:
filename: rules.json
count: 1
match:
id: 4
lists.packet.matches[0].name: "flowbits"
lists.packet.matches[0].flowbits.cmd: "isset"
lists.packet.matches[0].flowbits.names[0]: "fb3"
lists.packet.matches[0].flowbits.names[1]: "fb1"
- filter:
filename: rules.json
count: 1
match:
id: 5
lists.packet.matches[0].name: "flowbits"
lists.packet.matches[0].flowbits.cmd: "isset"
lists.packet.matches[0].flowbits.names[0]: "fb3"
lists.packet.matches[0].flowbits.names[1]: "fb4"
- filter:
filename: rules.json
count: 1
match:
id: 6
lists.packet.matches[0].name: "flowbits"
lists.packet.matches[0].flowbits.cmd: "isnotset"
lists.packet.matches[0].flowbits.names[0]: "fb5"
lists.packet.matches[0].flowbits.names[1]: "fb6"
- filter:
filename: rules.json
count: 1
match:
id: 7
lists.packet.matches[0].name: "flowbits"
lists.packet.matches[0].flowbits.cmd: "isnotset"
lists.packet.matches[0].flowbits.names[0]: "fb1"
lists.packet.matches[0].flowbits.names[1]: "fb2"
- filter:
filename: rules.json
count: 1
match:
id: 8
lists.postmatch.matches[0].name: "flowbits"
lists.postmatch.matches[0].flowbits.cmd: "unset"
lists.postmatch.matches[0].flowbits.names[0]: "fb1"
- filter:
filename: rules.json
count: 1
match:
id: 9
lists.postmatch.matches[0].name: "flowbits"
lists.postmatch.matches[0].flowbits.cmd: "toggle"
lists.postmatch.matches[0].flowbits.names[0]: "fb1"
- filter:
filename: rules.json
count: 1
match:
id: 10
lists.packet.matches[0].name: "flowbits"
lists.packet.matches[0].flowbits.cmd: "isset"
lists.packet.matches[0].flowbits.names[0]: "fb1"
- filter:
filename: rules.json
count: 1
match:
id: 11
lists.packet.matches[0].name: "flowbits"
lists.packet.matches[0].flowbits.cmd: "isset"
lists.packet.matches[0].flowbits.names[0]: "fb1"
lists.packet.matches[1].name: "flowbits"
lists.packet.matches[1].flowbits.cmd: "isset"
lists.packet.matches[1].flowbits.names[0]: "fb2"
- filter:
filename: rules.json
count: 1
match:
id: 12
lists.packet.matches[0].name: "flowbits"
lists.packet.matches[0].flowbits.cmd: "isset"
lists.packet.matches[0].flowbits.names[0]: "fb1"
lists.packet.matches[1].name: "flowbits"
lists.packet.matches[1].flowbits.cmd: "isset"
lists.packet.matches[1].flowbits.names[0]: "fb5"