mirror of
https://github.com/splunk/security_content
synced 2026-06-08 17:32:49 +00:00
74 lines
2.4 KiB
YAML
74 lines
2.4 KiB
YAML
name: System Processes Run From Unexpected Locations
|
|
id: a34aae96-ccf8-4aef-952c-3ea21444444d
|
|
version: 6
|
|
date: '2020-12-08'
|
|
author: David Dorsey, Michael Haag, Splunk
|
|
status: production
|
|
type: Anomaly
|
|
description: 'This search looks for system processes that typically execute from `C:\Windows\System32\`
|
|
or `C:\Windows\SysWOW64`. This may indicate a malicious process that is trying
|
|
to hide as a legitimate process.
|
|
|
|
This detection utilizes a lookup that is deduped `system32` and `syswow64` directories
|
|
from Server 2016 and Windows 10.
|
|
|
|
During triage, review the parallel processes - what process moved the native Windows
|
|
binary? identify any artifacts on disk and review. If a remote destination is contacted,
|
|
what is the reputation?'
|
|
data_source:
|
|
- Sysmon Event ID 1
|
|
search:
|
|
selection1:
|
|
Processes.process_path: C:\\Windows\\SysWOW64*
|
|
selection2:
|
|
Processes.process_path: C:\\Windows\\System32*
|
|
condition: selection1 and selection2
|
|
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: This detection may require tuning based on third party applications
|
|
utilizing native Windows binaries in non-standard paths.
|
|
references:
|
|
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1036.003/T1036.003.yaml
|
|
- https://attack.mitre.org/techniques/T1036/003/
|
|
tags:
|
|
analytic_story:
|
|
- Suspicious Command-Line Executions
|
|
- Unusual Processes
|
|
- Ransomware
|
|
- Masquerading - Rename System Utilities
|
|
- Qakbot
|
|
asset_type: Endpoint
|
|
confidence: 50
|
|
impact: 60
|
|
message: A System process $process_name$ is running from $process_path$ on $dest$,
|
|
potentially non-standard.
|
|
mitre_attack_id:
|
|
- T1036
|
|
- T1036.003
|
|
observable:
|
|
- name: dest
|
|
type: Endpoint
|
|
role:
|
|
- Victim
|
|
- name: process_name
|
|
type: Process
|
|
role:
|
|
- Child Process
|
|
- name: process_path
|
|
type: Other
|
|
role:
|
|
- Other
|
|
product:
|
|
- Splunk Enterprise
|
|
- Splunk Enterprise Security
|
|
- Splunk Cloud
|
|
risk_score: 30
|
|
security_domain: endpoint
|
|
tests:
|
|
- name: True Positive Test
|
|
attack_data:
|
|
- data: https://media.githubusercontent.com/media/splunk/attack_data/master/datasets/attack_techniques/T1036.003/atomic_red_team/windows-sysmon.log
|
|
source: XmlWinEventLog:Microsoft-Windows-Sysmon/Operational
|
|
sourcetype: xmlwineventlog
|