Files
splunk-security_content/detections/endpoint/system_information_discovery_detection.yml

70 lines
2.4 KiB
YAML

name: System Information Discovery Detection
id: 8e99f89e-ae58-4ebc-bf52-ae0b1a277e72
version: 2
date: '2021-09-07'
author: Patrick Bareiss, Splunk
type: TTP
datamodel:
- Endpoint
description: Detect system information discovery techniques used by attackers to understand
configurations of the system to further exploit it.
search: '| tstats `security_content_summariesonly` count min(_time) as firstTime max(_time)
as lastTime from datamodel=Endpoint.Processes where (Processes.process="*wmic* qfe*"
OR Processes.process=*systeminfo* OR Processes.process=*hostname*) by Processes.user
Processes.process_name Processes.process Processes.dest Processes.parent_process_name
| `drop_dm_object_name(Processes)` | eventstats dc(process) as dc_processes_by_dest
by dest | where dc_processes_by_dest > 2 | stats values(process) as process min(firstTime)
as firstTime max(lastTime) as lastTime by user, dest parent_process_name | `security_content_ctime(firstTime)`
| `security_content_ctime(lastTime)` | `system_information_discovery_detection_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.
known_false_positives: Administrators debugging servers
references:
- https://web.archive.org/web/20210119205146/https://oscp.infosecsanyam.in/priv-escalation/windows-priv-escalation
tags:
analytic_story:
- Discovery Techniques
asset_type: Windows
cis20:
- CIS 6
- CIS 8
confidence: 50
context:
- Source:Endpoint
- Stage:Recon
- Stage:Discovery
dataset:
- https://media.githubusercontent.com/media/splunk/attack_data/master/datasets/attack_techniques/T1082/atomic_red_team/windows-sysmon.log
impact: 30
kill_chain_phases:
- Actions on Objectives
message: Potential system information discovery behavior on $dest$ by $User$
mitre_attack_id:
- T1082
nist:
- DE.CM
observable:
- name: dest
type: Endpoint
role:
- Victim
- name: User
type: User
role:
- Attacker
product:
- Splunk Enterprise
- Splunk Enterprise Security
- Splunk Cloud
required_fields:
- _time
- Processes.process
- Processes.user
- Processes.process_name
- Processes.dest
risk_score: 15
security_domain: endpoint
supported_tas:
- Splunk_TA_microsoft_sysmon