LoFP LoFP / administrator or troubleshooting activities may trigger this alert. investigate the process performing this action to determine if its a legitimate activity.

Techniques

Sample rules

Description

The following analytic detects the suspicious termination of known services commonly targeted by ransomware before file encryption. It leverages Windows System Event Logs (EventCode 7036) to identify when critical services such as Volume Shadow Copy, backup, and antivirus services are stopped. This activity is significant because ransomware often disables these services to avoid errors and ensure successful file encryption. If confirmed malicious, this behavior could lead to widespread data encryption, rendering files inaccessible and potentially causing significant operational disruption and data loss.

Detection logic

`wineventlog_system` `normalized_service_binary_field` 
| rename param1 as display_name 
| rename param2 as status 
| search EventCode=7036 display_name IN ("Cisco AMP Orbital", "*Cisco Secure Endpoint*", "*Cisco Security Connector Monitoring*", "CiscoSAM", "CiscoAMPHeurDriver", "CiscoAMPELAMDriver", "CiscoAMPCEFWDriver", "ImmunetNetworkMonitorDriver", "ImmunetProtectDriver", "ImmunetSelfProtectDriver") status IN ("stopped", "arrĂȘtĂ©") 
| stats count min(_time) as firstTime max(_time) as lastTime by EventCode display_name normalized_service_name status dest 
| `security_content_ctime(lastTime)` 
| `security_content_ctime(firstTime)` 
| `windows_cisco_secure_endpoint_related_service_stopped_filter`