missing OR

This commit is contained in:
Michael Haag
2021-11-09 15:17:11 -07:00
parent 84b0ef1c94
commit da26a79fa7
@@ -11,7 +11,7 @@ description: this search is to detect a suspicious regsvr32 commandline "-s" to
dll that will download the 2nd stage loader that will download and decrypt the config
payload.
search: '| tstats `security_content_summariesonly` count min(_time) as firstTime max(_time)
as lastTime from datamodel=Endpoint.Processes where `process_regsvr32` AND (Processes.process=*-s* Processes.process=*/s*)
as lastTime from datamodel=Endpoint.Processes where `process_regsvr32` AND (Processes.process=*-s* OR Processes.process=*/s*)
by Processes.process_name Processes.process Processes.parent_process_name Processes.original_file_name
Processes.parent_process Processes.process_id Processes.parent_process_id Processes.dest
Processes.user | `drop_dm_object_name(Processes)` | `security_content_ctime(firstTime)`