Skip to content
Merged
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
8 changes: 8 additions & 0 deletions docs/cse/rules/cse-rules-syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,14 @@ The double ampersand (&&) operator is equivalent to a logical AND operator.

A logical OR. 

**Example**

The following expression returns true if `A` matches `B` or `A` matches `C`:

`where "A" matches "B" || where "A" matches "C"`

In Cloud SIEM, both sides of the `||` must be boolean. Other values such as string are not supported when using a logical OR operator.

### !

The exclamation point (!) function is equivalent to a logical NOT operator.
Expand Down