33 lines
1.0 KiB
YAML
33 lines
1.0 KiB
YAML
title: Windows Credential Editor
|
|
id: 7aa7009a-28b9-4344-8c1f-159489a390df
|
|
description: Detects the use of Windows Credential Editor (WCE)
|
|
status: experimental
|
|
author: Florian Roth
|
|
references:
|
|
- https://www.ampliasecurity.com/research/windows-credentials-editor/
|
|
date: 2019/12/31
|
|
modified: 2022/03/04
|
|
tags:
|
|
- attack.credential_access
|
|
- attack.t1003.001
|
|
- attack.s0005
|
|
logsource:
|
|
category: process_creation
|
|
product: windows
|
|
detection:
|
|
selection1:
|
|
- Imphash:
|
|
- a53a02b997935fd8eedcb5f7abab9b9f
|
|
- e96a73c7bf33a464c510ede582318bf2
|
|
- Hashes|contains: # Sysmon field hashes contains all types
|
|
- IMPHASH=a53a02b997935fd8eedcb5f7abab9b9f
|
|
- IMPHASH=e96a73c7bf33a464c510ede582318bf2
|
|
selection2:
|
|
CommandLine|endswith: '.exe -S'
|
|
ParentImage|endswith: '\services.exe'
|
|
filter:
|
|
Image|endswith: '\clussvc.exe'
|
|
condition: ( selection1 or selection2 ) and not filter
|
|
falsepositives:
|
|
- Another service that uses a single -s command line switch
|
|
level: critical |