|
2 | 2 | creation_date = "2025/11/12" |
3 | 3 | integration = ["endpoint", "windows", "system"] |
4 | 4 | maturity = "production" |
5 | | -updated_date = "2025/12/05" |
| 5 | +updated_date = "2025/12/09" |
6 | 6 | min_stack_version = "9.1.0" |
7 | 7 | min_stack_comments = "The esql match operator was introduced in version 9.1.0" |
8 | 8 |
|
@@ -72,10 +72,10 @@ query = ''' |
72 | 72 | FROM logs-endpoint.events.process-*, logs-windows.sysmon_operational-*, logs-system.security-*, logs-windows.*, winlogbeat-* metadata _id, _version, _index |
73 | 73 | | where event.category == "process" and event.type == "start" and |
74 | 74 | match(process.name, "svchost.exe", { "fuzziness": 1, "max_expansions": 10 }) and |
75 | | - not process.executable in ("C:\\Windows\\SysWOW64\\svchost.exe", "C:\\Windows\\System32\\svchost.exe") and |
76 | | - not process.executable like """\\Device\\HarddiskVolume*\\Windows\\System32\\svchost.exe""" and |
77 | | - not process.executable like """\\Device\\HarddiskVolume*\\Windows\\SysWOW64\\svchost.exe""" |
78 | | -| keep event.dataset, host.name, host.id, user.id, user.name, process.executable, process.parent.executable, process.command_line |
| 75 | + not to_lower(process.executable) in ("c:\\windows\\syswow64\\svchost.exe", "c:\\windows\\system32\\svchost.exe") and |
| 76 | + not to_lower(process.executable) like """\\device\\harddiskvolume*\\windows\\system32\\svchost.exe""" and |
| 77 | + not to_lower(process.executable) like """\\device\\harddiskvolume*\\windows\\syswow64\\svchost.exe""" |
| 78 | +| keep event.dataset, host.name, host.id, user.id, user.name, process.executable, process.parent.executable, process.command_line, _id, _version, _index |
79 | 79 | ''' |
80 | 80 |
|
81 | 81 |
|
|
0 commit comments