mirror of
https://github.com/splunk/security_content
synced 2026-06-08 17:32:49 +00:00
69 lines
2.6 KiB
YAML
69 lines
2.6 KiB
YAML
name: Windows Remote Services Rdp Enable
|
|
id: 8fbd2e88-4ea5-40b9-9217-fd0855e08cc0
|
|
version: 1
|
|
date: '2022-06-21'
|
|
author: Teoderick Contreras, Splunk
|
|
type: TTP
|
|
datamodel:
|
|
- Endpoint
|
|
description: The following analytic is to identify a modification in the Windows registry
|
|
to enable remote desktop protocol on a targeted machine. This technique was seen in several adversaries, malware or red teamer
|
|
to remotely access the compromised or targeted host by enabling this protocol in registry. Even this protocol might be allowed in some
|
|
production environment, This TTP behavior is a good pivot to check who and why the user want to enable this feature through registry which is un-common.
|
|
search: '| tstats `security_content_summariesonly` count min(_time) as firstTime max(_time) as lastTime FROM datamodel=Endpoint.Registry
|
|
where Registry.registry_path= "*\\Control\\Terminal Server\\fDenyTSConnections*" Registry.registry_value_data="0x00000000"
|
|
by Registry.registry_key_name Registry.user Registry.registry_path Registry.registry_value_data Registry.action Registry.dest
|
|
| `drop_dm_object_name(Registry)`
|
|
| `security_content_ctime(firstTime)`
|
|
| `security_content_ctime(lastTime)`
|
|
| `windows_remote_services_rdp_enable_filter`'
|
|
how_to_implement: To successfully implement this search you need to be ingesting information
|
|
on process that include the name of the process responsible for the changes from
|
|
your endpoints into the `Endpoint` datamodel in the `Registry` node. Also make sure
|
|
that this registry was included in your config files ex. sysmon config to be monitored.
|
|
known_false_positives: administrators may enable or disable this feature that may cause some false positive.
|
|
references:
|
|
- https://www.hybrid-analysis.com/sample/9d6611c2779316f1ef4b4a6edcfdfb5e770fe32b31ec2200df268c3bd236ed75?environmentId=100
|
|
tags:
|
|
analytic_story:
|
|
- Azorult
|
|
asset_type: Endpoint
|
|
cis20:
|
|
- CIS 3
|
|
- CIS 5
|
|
- CIS 16
|
|
confidence: 70
|
|
context:
|
|
- Source:Endpoint
|
|
- Stage:Lateral Movement
|
|
dataset:
|
|
- https://media.githubusercontent.com/media/splunk/attack_data/master/datasets/malware/azorult/sysmon.log
|
|
impact: 70
|
|
kill_chain_phases:
|
|
- Exploitation
|
|
message: the registry for rdp protocol was modified to enable in $dest$
|
|
mitre_attack_id:
|
|
- T1021.001
|
|
- T1021
|
|
nist:
|
|
- DE.CM
|
|
observable:
|
|
- name: dest
|
|
type: Endpoint
|
|
role:
|
|
- Victim
|
|
product:
|
|
- Splunk Enterprise
|
|
- Splunk Enterprise Security
|
|
- Splunk Cloud
|
|
required_fields:
|
|
- _time
|
|
- Registry.registry_key_name
|
|
- Registry.registry_path
|
|
- Registry.user
|
|
- Registry.dest
|
|
- Registry.registry_value_name
|
|
- Registry.action
|
|
risk_score: 49
|
|
security_domain: endpoint
|