Skip to content

Commit bf077aa

Browse files
authored
Merge pull request SigmaHQ#5584 from X-Junior/fix-fp-log-access-tampering
fix: Windows Event Log Access Tampering Via Registry
2 parents 73444ca + c48c992 commit bf077aa

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

rules/windows/registry/registry_set/registry_set_disable_windows_event_log_access.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ references:
99
- https://learn.microsoft.com/en-us/windows/win32/secauthz/security-descriptor-definition-language
1010
author: X__Junior
1111
date: 2025-01-16
12-
modified: 2025-02-05
12+
modified: 2025-08-16
1313
tags:
1414
- attack.defense-evasion
1515
- attack.t1547.001
@@ -33,7 +33,16 @@ detection:
3333
- Details|contains|all:
3434
- 'D:('
3535
- ')(D;'
36-
condition: 1 of selection_key_* and selection_details
36+
filter_main_trustedinstaller:
37+
Image: 'C:\Windows\servicing\TrustedInstaller.exe'
38+
filter_main_tiworker:
39+
Image|startswith: 'C:\Windows\WinSxS\'
40+
Image|endswith: '\TiWorker.exe'
41+
filter_optional_empty:
42+
Image: ''
43+
filter_optional_null:
44+
Image: null
45+
condition: 1 of selection_key_* and selection_details and not 1 of filter_main_* and not 1 of filter_optional_*
3746
falsepositives:
3847
- Administrative activity, still unlikely
3948
level: high

0 commit comments

Comments
 (0)