We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5867339 commit 6faa03eCopy full SHA for 6faa03e
artifacts/definitions/Windows/Detection/Amcache.yaml
@@ -13,7 +13,7 @@ description: |
13
14
- SHA1regex - regex entries to filter by SHA1.
15
- PathRegex - filter on path if available.
16
- - NameRegex - filter on EntryName / binary.
+ - NameRegex - filter on EntryName OR OriginalFileName.
17
18
NOTE:
19
@@ -109,9 +109,9 @@ sources:
109
WHERE SHA1
110
AND SHA1 =~ SHA1Regex
111
AND if(condition= NameRegex,
112
- then= EntryName =~ NameRegex,
113
- else= True)
+ then= EntryName =~ NameRegex OR OriginalFileName =~ NameRegex,
+ else= True)
114
AND if(condition= PathRegex,
115
then= EntryPath =~ PathRegex,
116
else= True)
117
- })
+ })
0 commit comments