Skip to content

Commit 10913ce

Browse files
committed
Update defense_evasion_masquerading_renamed_autoit.toml
1 parent 04a6efc commit 10913ce

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

rules/windows/defense_evasion_masquerading_renamed_autoit.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,10 @@ type = "eql"
118118

119119
query = '''
120120
process where host.os.type == "windows" and event.type == "start" and
121-
process.pe.original_file_name : "AutoIt*.exe" and not process.name : "AutoIt*.exe"
121+
(
122+
(process.pe.original_file_name : "AutoIt*.exe" and not process.name : "AutoIt*.exe") or
123+
(process.pe.original_file_name == "AutoHotkey.exe" and not process.name : ("AutoHotkey*.exe", "InternalAHK.exe"))
124+
)
122125
'''
123126

124127

0 commit comments

Comments
 (0)