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 Security Logs Using MiniNt Registry
|
|
id: 39ebdc68-25b9-11ec-aec7-acde48001122
|
|
version: 2
|
|
date: '2022-01-27'
|
|
author: Teoderick Contreras, Splunk
|
|
type: TTP
|
|
datamodel:
|
|
- Endpoint
|
|
description: This analytic is to detect a suspicious registry modification to disable
|
|
security audit logs. This technique was shared by a researcher to disable Security
|
|
logs of windows by adding this registry. The Windows will think it is WinPE and
|
|
will not log any event to the Security Log
|
|
search: '| tstats `security_content_summariesonly` count FROM datamodel=Endpoint.Registry
|
|
where Registry.registry_path="*\\Control\\MiniNt\\*" 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_security_logs_using_minint_registry_filter`'
|
|
how_to_implement: To successfully implement this search, you must be ingesting data
|
|
that records registry activity from your hosts to populate the endpoint data model
|
|
in the registry node. This is typically populated via endpoint detection-and-response
|
|
product, such as Carbon Black or endpoint data sources, such as Sysmon. The data
|
|
used for this search is typically generated via logs that report reads and writes
|
|
to the registry.
|
|
known_false_positives: Unknown.
|
|
references:
|
|
- https://twitter.com/0gtweet/status/1182516740955226112
|
|
tags:
|
|
analytic_story:
|
|
- Windows Defense Evasion Tactics
|
|
- Windows Registry Abuse
|
|
confidence: 100
|
|
context:
|
|
- Source:Endpoint
|
|
- Stage:Defense Evasion
|
|
dataset:
|
|
- https://media.githubusercontent.com/media/splunk/attack_data/master/datasets/attack_techniques/T1112/minint_reg/sysmon.log
|
|
impact: 80
|
|
kill_chain_phases:
|
|
- Exploitation
|
|
message: modified/added/deleted registry entry $Registry.registry_path$ in $dest$
|
|
mitre_attack_id:
|
|
- T1112
|
|
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: 80
|
|
security_domain: endpoint
|
|
asset_type: Endpoint
|