forked from SigmaHQ/sigma
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add rule for renamed browser core execution
- Loading branch information
1 parent
a425509
commit d849ece
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
rules/windows/process_creation/proc_creation_win_renamed_browsercore.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,23 @@ | ||
title: Process Creation with Renamed BrowserCore.exe | ||
id: 8a4519e8-e64a-40b6-ae85-ba8ad2177559 | ||
status: experimental | ||
description: Detects process creation with a renamed BrowserCore.exe (used to extract Azure tokens) | ||
author: Max Altgelt | ||
date: 2022/06/02 | ||
references: | ||
- https://twitter.com/mariuszbit/status/1531631015139102720 | ||
tags: | ||
- attack.t1528 | ||
- attack.t1036.003 | ||
logsource: | ||
category: process_creation | ||
product: windows | ||
detection: | ||
selection: | ||
OriginalFileName: BrowserCore.exe | ||
filter_realbrowsercore: | ||
Image|endswith: '\BrowserCore.exe' | ||
condition: selection and not 1 of filter* | ||
falsepositives: | ||
- Unknown | ||
level: high |