LoFP LoFP / false positives are possible if legitimate applications are allowed to terminate this process during testing or updates. filter as needed based on paths that are used legitimately.

Techniques

Sample rules

Windows Processes Killed By Industroyer2 Malware

Description

The following analytic detects the termination of specific processes by the Industroyer2 malware. It leverages Sysmon EventCode 5 to identify when processes like “PServiceControl.exe” and “PService_PPD.exe” are killed. This activity is significant as it targets processes related to energy facility networks, indicating a potential attack on critical infrastructure. If confirmed malicious, this could lead to disruption of essential services, loss of control over energy systems, and significant operational impact. Immediate investigation is required to determine the cause and mitigate any potential threats.

Detection logic

`sysmon` EventCode=5 process_name IN ("PServiceControl.exe", "PService_PPD.exe") 
| stats min(_time) as firstTime max(_time) as lastTime count by process_name process process_path process_guid process_id EventCode dest user_id 
| `security_content_ctime(firstTime)`
| `security_content_ctime(lastTime)` 
| `windows_processes_killed_by_industroyer2_malware_filter`