mirror of
https://github.com/splunk/security_content
synced 2026-06-08 17:32:49 +00:00
6d9d7b1a57
updated query and references
81 lines
3.0 KiB
YAML
81 lines
3.0 KiB
YAML
name: Certutil exe certificate extraction
|
|
id: 337a46be-600f-11eb-ae93-0242ac130002
|
|
version: 2
|
|
date: '2022-07-15'
|
|
author: Rod Soto, Splunk
|
|
type: TTP
|
|
datamodel:
|
|
- Endpoint
|
|
description: This search looks for arguments to certutil.exe indicating the manipulation
|
|
or extraction of Certificate. This certificate can then be used to sign new authentication
|
|
tokens specially inside Federated environments such as Windows ADFS.
|
|
search: '| tstats `security_content_summariesonly` count min(_time) as firstTime max(_time) as lastTime from datamodel=Endpoint.Processes where Processes.process_name=certutil.exe Processes.process = "*-exportPFX*" 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)`
|
|
| `certutil_exe_certificate_extraction_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: Unless there are specific use cases, manipulating or exporting
|
|
certificates using certutil is uncommon. Extraction of certificate has been observed
|
|
during attacks such as Golden SAML and other campaigns targeting Federated services.
|
|
references:
|
|
- https://blog.sygnia.co/detection-and-hunting-of-golden-saml-attack
|
|
- https://strontic.github.io/xcyclopedia/library/certutil.exe-09A8A29BAA3A451713FD3D07943B4A43.html
|
|
tags:
|
|
analytic_story:
|
|
- Windows Persistence Techniques
|
|
- Cloud Federated Credential Abuse
|
|
- Living Off The Land
|
|
asset_type: Endpoint
|
|
confidence: 70
|
|
context:
|
|
- Source:Endpoint
|
|
- Stage:Privilege Escalation
|
|
dataset:
|
|
- https://media.githubusercontent.com/media/splunk/attack_data/master/datasets/suspicious_behaviour/certutil_exe_certificate_extraction/windows-sysmon.log
|
|
impact: 90
|
|
kill_chain_phases:
|
|
- Installation
|
|
message: An instance of $parent_process_name$ spawning $process_name$ was identified
|
|
on endpoint $dest$ by user $user$ attempting export a certificate.
|
|
observable:
|
|
- name: user
|
|
type: User
|
|
role:
|
|
- Victim
|
|
- name: dest
|
|
type: Hostname
|
|
role:
|
|
- Victim
|
|
- name: parent_process_name
|
|
type: Process
|
|
role:
|
|
- Parent Process
|
|
- name: process_name
|
|
type: Process
|
|
role:
|
|
- Child Process
|
|
product:
|
|
- Splunk Enterprise
|
|
- Splunk Enterprise Security
|
|
- Splunk Cloud
|
|
required_fields:
|
|
- _time
|
|
- Processes.dest
|
|
- Processes.user
|
|
- Processes.parent_process_name
|
|
- Processes.parent_process
|
|
- Processes.original_file_name
|
|
- Processes.process_name
|
|
- Processes.process
|
|
- Processes.process_id
|
|
- Processes.parent_process_path
|
|
- Processes.process_path
|
|
- Processes.parent_process_id
|
|
risk_score: 63
|
|
security_domain: endpoint
|
|
supported_tas:
|
|
- Splunk_TA_microsoft_sysmon
|