Skip to content

Commit 2685a3e

Browse files
authored
Merge pull request #46 from arblade/main
Fixing field null expression
2 parents 57bb93c + 5b47835 commit 2685a3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sigma/backends/splunk/splunk.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ class SplunkBackend(TextQueryBackend):
135135
SigmaCompareExpression.CompareOperators.GTE: ">=",
136136
}
137137

138-
field_null_expression: ClassVar[str] = "{field}!=*"
138+
field_null_expression: ClassVar[str] = "NOT {field}=*"
139139

140140
convert_or_as_in: ClassVar[bool] = True
141141
convert_and_as_in: ClassVar[bool] = False

0 commit comments

Comments
 (0)