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.
Merge PR SigmaHQ#5173 from @X-Junior - New rule additions and some fixes
new: Clfs.SYS Loaded By Process Located In a Potential Suspicious Location fix: Python Initiated Connection - Add filter for `pip install` fix: Python Inline Command Execution - Add filter for whl package installations --------- Co-authored-by: Nasreddine Bencherchali <[email protected]>
- Loading branch information
Showing
3 changed files
with
54 additions
and
5 deletions.
There are no files selected for viewing
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,41 @@ | ||
title: Clfs.SYS Loaded By Process Located In a Potential Suspicious Location | ||
id: fb4e2211-6d08-426b-8e6f-0d4a161e3b1d | ||
status: experimental | ||
description: Detects Clfs.sys being loaded by a process running from a potentially suspicious location. Clfs.sys is loaded as part of many CVEs exploits that targets Common Log File. | ||
references: | ||
- https://ssd-disclosure.com/ssd-advisory-common-log-file-system-clfs-driver-pe/ | ||
- https://x.com/Threatlabz/status/1879956781360976155 | ||
author: X__Junior | ||
date: 2025-01-20 | ||
tags: | ||
- attack.execution | ||
- attack.t1059 | ||
logsource: | ||
category: image_load | ||
product: windows | ||
detection: | ||
selection_dll: | ||
ImageLoaded|endswith: '\clfs.sys' | ||
selection_folders_1: | ||
Image|contains: | ||
- ':\Perflogs\' | ||
- ':\Users\Public\' | ||
- '\Temporary Internet' | ||
- '\Windows\Temp\' | ||
selection_folders_2: | ||
- Image|contains|all: | ||
- ':\Users\' | ||
- '\Favorites\' | ||
- Image|contains|all: | ||
- ':\Users\' | ||
- '\Favourites\' | ||
- Image|contains|all: | ||
- ':\Users\' | ||
- '\Contacts\' | ||
- Image|contains|all: | ||
- ':\Users\' | ||
- '\Pictures\' | ||
condition: selection_dll and 1 of selection_folders_* | ||
falsepositives: | ||
- Unknown | ||
level: medium |
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
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