Skip to content

Commit

Permalink
Merge pull request #46 from arblade/main
Browse files Browse the repository at this point in the history
Fixing field null expression
  • Loading branch information
thomaspatzke authored Dec 3, 2024
2 parents 57bb93c + 5b47835 commit 2685a3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sigma/backends/splunk/splunk.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ class SplunkBackend(TextQueryBackend):
SigmaCompareExpression.CompareOperators.GTE: ">=",
}

field_null_expression: ClassVar[str] = "{field}!=*"
field_null_expression: ClassVar[str] = "NOT {field}=*"

convert_or_as_in: ClassVar[bool] = True
convert_and_as_in: ClassVar[bool] = False
Expand Down

0 comments on commit 2685a3e

Please sign in to comment.