mirror of
https://github.com/splunk/security_content
synced 2026-06-08 17:32:49 +00:00
af8a47c5c2
Added - Living Off The Land Story
81 lines
2.8 KiB
YAML
81 lines
2.8 KiB
YAML
name: Remote WMI Command Attempt
|
|
id: 272df6de-61f1-4784-877c-1fbc3e2d0838
|
|
version: 4
|
|
date: '2018-12-03'
|
|
author: Rico Valdez, Michael Haag, Splunk
|
|
type: TTP
|
|
datamodel:
|
|
- Endpoint
|
|
description: The following analytic identifies usage of `wmic.exe` spawning a local
|
|
or remote process, identified by the `node` switch. During triage, review parallel
|
|
processes for additional commands executed. Look for any file modifications before
|
|
and after `wmic.exe` execution. In addition, identify the remote endpoint and confirm
|
|
execution or file modifications. Contain and isolate the endpoint as needed.
|
|
search: '| tstats `security_content_summariesonly` count min(_time) as firstTime max(_time)
|
|
as lastTime from datamodel=Endpoint.Processes where `process_wmic` Processes.process=*node*
|
|
by Processes.dest Processes.user Processes.parent_process Processes.process_name
|
|
Processes.process Processes.process_id Processes.parent_process_id | `drop_dm_object_name(Processes)`
|
|
| `security_content_ctime(firstTime)` | `security_content_ctime(lastTime)` | `remote_wmi_command_attempt_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 `Processes` node. In addition,
|
|
confirm the latest CIM App 4.20 or higher is installed and the latest TA for the
|
|
endpoint product. Deprecated because duplicate of Remote Process Instantiation via
|
|
WMI.
|
|
known_false_positives: Administrators may use this legitimately to gather info from
|
|
remote systems. Filter as needed.
|
|
references:
|
|
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1047/T1047.yaml
|
|
tags:
|
|
analytic_story:
|
|
- Suspicious WMI Use
|
|
- Living Off The Land
|
|
asset_type: Endpoint
|
|
cis20:
|
|
- CIS 3
|
|
- CIS 5
|
|
confidence: 60
|
|
context:
|
|
- Source:Endpoint
|
|
- Stage:Execution
|
|
dataset:
|
|
- https://media.githubusercontent.com/media/splunk/attack_data/master/datasets/attack_techniques/T1047/atomic_red_team/windows-sysmon.log
|
|
impact: 60
|
|
kill_chain_phases:
|
|
- Actions on Objectives
|
|
message: A wmic.exe process $process$ contain node commandline $process$ in host
|
|
$dest$
|
|
mitre_attack_id:
|
|
- T1047
|
|
nist:
|
|
- PR.PT
|
|
- PR.AT
|
|
- PR.AC
|
|
- PR.IP
|
|
observable:
|
|
- name: dest
|
|
type: Hostname
|
|
role:
|
|
- Victim
|
|
- name: user
|
|
type: User
|
|
role:
|
|
- Victim
|
|
product:
|
|
- Splunk Enterprise
|
|
- Splunk Enterprise Security
|
|
- Splunk Cloud
|
|
required_fields:
|
|
- _time
|
|
- Processes.user
|
|
- Processes.process_name
|
|
- Processes.parent_process_name
|
|
- Processes.dest
|
|
- Processes.parent_process
|
|
- Processes.parent_process_id
|
|
- Processes.process_id
|
|
risk_score: 36
|
|
security_domain: endpoint
|
|
supported_tas:
|
|
- Splunk_TA_microsoft_sysmon
|