Files
blue-team-tools/rules/windows/process_creation/proc_creation_win_regini.yml
T

29 lines
1016 B
YAML
Raw Normal View History

2020-10-08 14:47:22 +02:00
title: Modifies the Registry From a File
id: 5f60740a-f57b-4e76-82a1-15b6ff2cb134
status: experimental
description: Detects the execution of regini.exe which can be used to modify registry keys, the changes are imported from one or more text files.
references:
- https://github.com/LOLBAS-Project/LOLBAS/blob/master/yml/OSBinaries/Regini.yml
- https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f
- https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/regini
tags:
- attack.t1112
- attack.defense_evasion
2020-10-08 15:04:09 +02:00
author: Eli Salem, Sander Wiebing, oscd.community
2020-10-08 14:47:22 +02:00
date: 2020/10/08
2021-05-24 10:34:56 +02:00
modified: 2021/05/24
2020-10-08 14:47:22 +02:00
logsource:
category: process_creation
product: windows
detection:
selection:
Image|endswith: '\regini.exe'
2020-10-12 09:55:34 +02:00
filter:
2021-09-07 23:38:07 +02:00
CommandLine|re: ':[^ \\\\]' # to avoid intersection with ADS rule
2020-10-12 09:55:34 +02:00
condition: selection and not filter
2021-05-24 10:34:56 +02:00
fields:
2020-10-08 14:47:22 +02:00
- ParentImage
- CommandLine
falsepositives:
2020-10-08 15:11:57 +02:00
- Legitimate modification of keys
2020-10-12 09:55:34 +02:00
level: low