|
| 1 | +name: Windows Cisco Secure Endpoint Related Service Stopped |
| 2 | +id: df74f45f-01c8-4fd6-bcb8-f6a9ea58307a |
| 3 | +version: 1 |
| 4 | +date: '2024-12-09' |
| 5 | +author: Nasreddine Bencherchali, Splunk |
| 6 | +status: production |
| 7 | +type: Anomaly |
| 8 | +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. |
| 9 | +data_source: |
| 10 | +- Windows Event Log System 7036 |
| 11 | +search: '`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`' |
| 12 | +how_to_implement: To successfully implement this search, you need to be ingesting logs with the 7036 EventCode ScManager in System audit Logs from your endpoints. |
| 13 | +known_false_positives: Administrator or troubleshooting activities may trigger this alert. Investigate the process performing this action to determine if its a legitimate activity. |
| 14 | +references: |
| 15 | +- https://krebsonsecurity.com/2021/05/a-closer-look-at-the-darkside-ransomware-gang/ |
| 16 | +- https://www.mcafee.com/blogs/other-blogs/mcafee-labs/mcafee-atr-analyzes-sodinokibi-aka-revil-ransomware-as-a-service-what-the-code-tells-us/ |
| 17 | +- https://news.sophos.com/en-us/2020/04/24/lockbit-ransomware-borrows-tricks-to-keep-up-with-revil-and-maze/ |
| 18 | +- https://blogs.vmware.com/security/2022/10/lockbit-3-0-also-known-as-lockbit-black.html |
| 19 | +drilldown_searches: |
| 20 | +- name: View the detection results for - "$dest$" |
| 21 | + search: '%original_detection_search% | search dest = "$dest$"' |
| 22 | + earliest_offset: $info_min_time$ |
| 23 | + latest_offset: $info_max_time$ |
| 24 | +- name: View risk events for the last 7 days for - "$dest$" |
| 25 | + search: '| from datamodel Risk.All_Risk | search normalized_risk_object IN ("$dest$") |
| 26 | + starthoursago=168 | stats count min(_time) as firstTime max(_time) as lastTime |
| 27 | + values(search_name) as "Search Name" values(risk_message) as "Risk Message" values(analyticstories) |
| 28 | + as "Analytic Stories" values(annotations._all) as "Annotations" values(annotations.mitre_attack.mitre_tactic) |
| 29 | + as "ATT&CK Tactics" by normalized_risk_object | `security_content_ctime(firstTime)` |
| 30 | + | `security_content_ctime(lastTime)`' |
| 31 | + earliest_offset: $info_min_time$ |
| 32 | + latest_offset: $info_max_time$ |
| 33 | +rba: |
| 34 | + message: Cisco Secure Endpoint Service $display_name$ stopped on $dest$ |
| 35 | + risk_objects: |
| 36 | + - field: dest |
| 37 | + type: system |
| 38 | + score: 60 |
| 39 | + threat_objects: |
| 40 | + - field: display_name |
| 41 | + type: service |
| 42 | +tags: |
| 43 | + analytic_story: |
| 44 | + - Security Solution Tampering |
| 45 | + asset_type: Endpoint |
| 46 | + mitre_attack_id: |
| 47 | + - T1490 |
| 48 | + product: |
| 49 | + - Splunk Enterprise |
| 50 | + - Splunk Enterprise Security |
| 51 | + - Splunk Cloud |
| 52 | + security_domain: endpoint |
| 53 | +tests: |
| 54 | +- name: True Positive Test |
| 55 | + attack_data: |
| 56 | + - data: https://media.githubusercontent.com/media/splunk/attack_data/master/datasets/attack_techniques/T1562.001/cisco_secure_endpoint_tampering/service_stop.log |
| 57 | + source: XmlWinEventLog:System |
| 58 | + sourcetype: XmlWinEventLog |
0 commit comments