Files
blue-team-tools/rules/windows/process_creation/proc_creation_win_query_registry.yml
T
Nasreddine Bencherchali 0e133f7d58 Additional updates
2022-08-04 11:53:09 +01:00

42 lines
1.2 KiB
YAML

title: Query Registry
id: 970007b7-ce32-49d0-a4a4-fbef016950bd
status: test
description: Adversaries may interact with the Windows Registry to gather information about the system, configuration, and installed software.
author: Timur Zinniatullin, oscd.community
references:
- https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1012/T1012.md
date: 2019/10/21
modified: 2022/08/04
logsource:
category: process_creation
product: windows
detection:
selection_1:
Image|endswith: '\reg.exe'
CommandLine|contains:
- 'query'
- 'save'
- 'export'
selection_2:
CommandLine|contains:
- 'currentVersion\windows'
- 'winlogon\'
- 'currentVersion\shellServiceObjectDelayLoad'
- 'currentVersion\run' # Also covers the strings "RunOnce", "RunOnceEx" and "runServicesOnce"
- 'currentVersion\policies\explorer\run'
- 'currentcontrolset\services'
condition: all of selection_*
fields:
- Image
- CommandLine
- User
- LogonGuid
- Hashes
- ParentProcessGuid
- ParentCommandLine
level: low
tags:
- attack.discovery
- attack.t1012
- attack.t1007