Skip to content

Commit e1ca79d

Browse files
authored
fix: change regex pattern causing panics on linux/aarch64 (#1288)
Signed-off-by: egibs <[email protected]>
1 parent eeaf654 commit e1ca79d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rules/false_positives/datadog.yara

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ rule default_policy: override {
66

77
strings:
88
$datadog = "# IMPORTANT: Edits to this file will not be reflected in the Datadog App and will be overwritten with new policy file downloads. Please modify rules in the Datadog App for full functionality."
9-
$version = /version: [0-9]\.[0-9]{1,3}\.[0-9]{1,3}/
9+
$version = /version: \d+\.\d+\.\d+/
1010
$type = "type: policy"
1111
1212
condition:

0 commit comments

Comments
 (0)