-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
new: Access To Sysvol Policies Share By Uncommon Process new: Access To Potentially Sensitive Sysvol Files By Uncommon Application --------- Co-authored-by: nasbench <[email protected]>
- Loading branch information
Showing
2 changed files
with
78 additions
and
0 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
...eat-hunting/windows/file/file_access/file_access_win_susp_gpo_access_uncommon_process.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
title: Access To Sysvol Policies Share By Uncommon Process | ||
id: 8344c19f-a023-45ff-ad63-a01c5396aea0 | ||
status: experimental | ||
description: Detects file access requests to the Windows Sysvol Policies Share by uncommon processes | ||
references: | ||
- https://github.com/vletoux/pingcastle | ||
author: frack113 | ||
date: 2023/12/21 | ||
tags: | ||
- attack.credential_access | ||
- attack.t1552.006 | ||
- detection.threat_hunting | ||
logsource: | ||
category: file_access | ||
product: windows | ||
definition: 'Requirements: Microsoft-Windows-Kernel-File ETW provider' | ||
detection: | ||
selection: | ||
FileName|startswith: '\\' | ||
FileName|contains|all: | ||
- '\sysvol\' | ||
- '\Policies\' | ||
filter_main_generic: | ||
Image|contains: | ||
- ':\Program Files (x86)\' | ||
- ':\Program Files\' | ||
- ':\Windows\explorer.exe' | ||
- ':\Windows\system32\' | ||
- ':\Windows\SysWOW64\' | ||
condition: selection and not 1 of filter_main_* | ||
falsepositives: | ||
- Unknown | ||
level: medium |
45 changes: 45 additions & 0 deletions
45
rules/windows/file/file_access/file_access_win_susp_gpo_access_file.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
title: Access To Potentially Sensitive Sysvol Files By Uncommon Application | ||
id: d51694fe-484a-46ac-92d6-969e76d60d10 | ||
related: | ||
- id: 8344c19f-a023-45ff-ad63-a01c5396aea0 | ||
type: derived | ||
status: experimental | ||
description: Detects file access requests to potentially sensitive files hosted on the Windows Sysvol share. | ||
references: | ||
- https://github.com/vletoux/pingcastle | ||
author: frack113 | ||
date: 2023/12/21 | ||
tags: | ||
- attack.credential_access | ||
- attack.t1552.006 | ||
logsource: | ||
category: file_access | ||
product: windows | ||
definition: 'Requirements: Microsoft-Windows-Kernel-File ETW provider' | ||
detection: | ||
selection: | ||
FileName|startswith: '\\' | ||
FileName|contains|all: | ||
- '\sysvol\' | ||
- '\Policies\' | ||
FileName|endswith: | ||
- 'audit.csv' | ||
- 'Files.xml' | ||
- 'GptTmpl.inf' | ||
- 'groups.xml' | ||
- 'Registry.pol' | ||
- 'Registry.xml' | ||
- 'scheduledtasks.xml' | ||
- 'scripts.ini' | ||
- 'services.xml' | ||
filter_main_generic: | ||
Image|startswith: | ||
- ':\Program Files (x86)\' | ||
- ':\Program Files\' | ||
- ':\Windows\explorer.exe' | ||
- ':\Windows\system32\' | ||
- ':\Windows\SysWOW64\' | ||
condition: selection and not 1 of filter_main_* | ||
falsepositives: | ||
- Unknown | ||
level: medium |