-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2283 from Karneades/new-filehandler
rule: add new rule to detect the abuse of the exefile file handler
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
rules/windows/registry_event/win_registry_file_association_exefile.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,22 @@ | ||
title: New File Association Using Exefile | ||
id: 44a22d59-b175-4f13-8c16-cbaef5b581ff | ||
description: Detects the abuse of the exefile handler in new file association. Used for bypass of security products. | ||
author: Andreas Hunkeler (@Karneades) | ||
date: 2021/11/19 | ||
status: experimental | ||
references: | ||
- https://twitter.com/mrd0x/status/1461041276514623491 | ||
tags: | ||
- attack.defense_evasion | ||
logsource: | ||
category: registry_event | ||
product: windows | ||
detection: | ||
selection: | ||
TargetObject|contains: 'Classes\.' | ||
Details: 'exefile' | ||
EventType: SetValue | ||
condition: selection | ||
falsepositives: | ||
- Unknown | ||
level: high |