Malicious Powershell Process With Obfuscation Techniques
Malicious Powershell Process With Obfuscation Techniques
Description
This search looks for PowerShell processes launched with arguments that have characters indicative of obfuscation on the command-line.
Help
Malicious Powershell Process With Obfuscation Techniques Help
To successfully implement this search you need to be ingesting information on process that include the name of the process responsible for the changes from your endpoints into the Endpoint datamodel in the Processes node. In addition, confirm the latest CIM App 4.20 or higher is installed and the latest TA for the endpoint product.
Search
| tstats`security_content_summariesonly`countvalues(Processes.process) as process values(Processes.parent_process) as parent_process min(_time) as firstTime max(_time) as lastTime fromdatamodel=Endpoint.Processes where`process_powershell`by Processes.user Processes.process_name Processes.original_file_name Processes.parent_process_name Processes.dest Processes.process | `drop_dm_object_name(Processes)` | `security_content_ctime(firstTime)`| `security_content_ctime(lastTime)`| eval num_obfuscation = (mvcount(split(process,"`"))-1) + (mvcount(split(process, "^"))-1) + (mvcount(split(process, "'"))-1) | `malicious_powershell_process_with_obfuscation_techniques_filter` | search num_obfuscation > 10