fix_issues

This commit is contained in:
tccontre
2021-11-09 16:47:05 +01:00
parent fdecebc8b5
commit 97da96df03
@@ -11,9 +11,9 @@ 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`
(Processes.process="*/i*" AND Processes.process="*/s*") OR Processes.process="*/si*" OR Processes.process="*-si*" by Processes.dest Processes.parent_process
Processes.process Processes.parent_process_name Processes.process_name Processes.original_file_name Processes.user
as lastTime from datamodel=Endpoint.Processes where `process_regsvr32` AND 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)`
| `security_content_ctime(lastTime)`