mirror of
https://github.com/splunk/security_content
synced 2026-06-08 17:32:49 +00:00
74 lines
3.0 KiB
YAML
74 lines
3.0 KiB
YAML
name: Disable Defender Submit Samples Consent Feature
|
|
id: 73922ff8-3022-11ec-bf5e-acde48001122
|
|
version: 2
|
|
date: '2022-01-26'
|
|
author: Teoderick Contreras, Splunk
|
|
type: TTP
|
|
datamodel:
|
|
- Endpoint
|
|
description: This analytic is intended to detect a suspicious modification of the Windows registry to disable
|
|
a Windows Defender feature. This technique is intended to bypass or evade detection from
|
|
Windows Defender AV, specifically the feature that submits samples for further analysis.
|
|
search: '| tstats `security_content_summariesonly` count from datamodel=Endpoint.Registry
|
|
where Registry.registry_path = "*\\Microsoft\\Windows Defender\\SpyNet*" Registry.registry_value_name
|
|
= SubmitSamplesConsent Registry.registry_value_data = 0x00000000 by _time span=1h
|
|
Registry.dest Registry.user Registry.registry_path Registry.registry_value_name
|
|
Registry.registry_value_data Registry.process_guid | `drop_dm_object_name(Registry)`
|
|
|rename process_guid as proc_guid |join proc_guid, _time [| tstats `security_content_summariesonly`
|
|
count FROM datamodel=Endpoint.Processes by _time span=1h Processes.process_id Processes.process_name
|
|
Processes.process Processes.dest Processes.parent_process_name Processes.parent_process
|
|
Processes.process_guid | `drop_dm_object_name(Processes)` |rename process_guid as
|
|
proc_guid | fields _time dest user parent_process_name parent_process process_name
|
|
process_path process proc_guid registry_path registry_value_name registry_value_data]
|
|
| table _time dest user parent_process_name parent_process process_name process_path
|
|
process proc_guid registry_path registry_value_name registry_value_data | `disable_defender_submit_samples_consent_feature_filter`'
|
|
how_to_implement: To successfully implement this search, you need to be ingesting
|
|
logs with the registry value name, registry path, and registry value data from your
|
|
endpoints. If you are using Sysmon, you must have at least version 6.0.4 of the
|
|
Sysmon TA.
|
|
known_false_positives: admin or user may choose to disable windows defender product
|
|
references:
|
|
- https://thedfirreport.com/2021/10/18/icedid-to-xinglocker-ransomware-in-24-hours/
|
|
tags:
|
|
analytic_story:
|
|
- IcedID
|
|
- Windows Registry Abuse
|
|
- Azorult
|
|
confidence: 70
|
|
context:
|
|
- Source:Endpoint
|
|
- Stage:Defense Evasion
|
|
dataset:
|
|
- https://media.githubusercontent.com/media/splunk/attack_data/master/datasets/malware/icedid/disable_av/sysmon.log
|
|
impact: 70
|
|
kill_chain_phases:
|
|
- Exploitation
|
|
message: modified/added/deleted registry entry $Registry.registry_path$ in $dest$
|
|
mitre_attack_id:
|
|
- T1562.001
|
|
- T1562
|
|
observable:
|
|
- name: dest
|
|
type: Hostname
|
|
role:
|
|
- Victim
|
|
- name: user
|
|
type: User
|
|
role:
|
|
- Victim
|
|
product:
|
|
- Splunk Enterprise
|
|
- Splunk Enterprise Security
|
|
- Splunk Cloud
|
|
required_fields:
|
|
- _time
|
|
- Registry.dest
|
|
- Registry.user
|
|
- Registry.registry_value_name
|
|
- Registry.registry_key_name
|
|
- Registry.registry_path
|
|
- Registry.registry_value_data
|
|
risk_score: 49
|
|
security_domain: endpoint
|
|
asset_type: Endpoint
|