-
-
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.
- Loading branch information
1 parent
29dce31
commit 0ddbf51
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
rules/windows/image_load/image_load_dll_taskschd_load_from_suspicious_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: Suspicious Task Scheduler DLL Load | ||
id: 3b92a1d0-8d4b-4d28-a1b4-1e29d49a6a3e | ||
status: experimental | ||
description: | | ||
Detects the loading of the taskschd.dll module from suspicious processes from uncommon directories, which could indicate a scheduled task creation attempt via COM object (Schedule.Service) abuse. | ||
references: | ||
- https://www.logpoint.com/en/blog/shenanigans-of-scheduled-tasks/ | ||
- https://x.com/Max_Mal_/status/1826179497084739829 | ||
author: Swachchhanda Shrawan Poudel | ||
date: 2024-08-26 | ||
tags: | ||
- attack.persistence | ||
- attack.execution | ||
- attack.t1053.005 | ||
logsource: | ||
category: image_load | ||
product: windows | ||
detection: | ||
selection: | ||
- ImageLoaded|endswith: 'taskschd.dll' | ||
- OriginalFileName: 'taskschd.dll' | ||
filter: | ||
Image|contains: | ||
- '\AppData\Local\Temp\' | ||
- 'C:\Users\Public\' | ||
- 'C:\Windows\Temp\' | ||
- 'C:\Temp\' | ||
- '\Downloads\' | ||
- '\Desktop\' | ||
condition: selection and not filter | ||
falsepositives: | ||
- Unknown | ||
level: high |