mirror of
https://github.com/keyboardcrunch/SentinelOne-ATTACK-Queries
synced 2026-06-08 17:17:21 +00:00
Added T1053.005 Scheduled Tasks
This commit is contained in:
@@ -184,6 +184,11 @@ FileFullName ContainsCIS "Programs\Startup" AND FileType In Contains Anycase ("v
|
|||||||
### T1053.005 Scheduled Task
|
### T1053.005 Scheduled Task
|
||||||
Atomics: [T1053.005](https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1053.005/T1053.005.md)
|
Atomics: [T1053.005](https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1053.005/T1053.005.md)
|
||||||
|
|
||||||
|
Our goal with this query is to detect any schtasks /create command as well as any use of the New-ScheduledTask* cmdlets from powershell, and to prevent noise from services and updates we'll exclude a list of system "trusted" SrcProcParentName executables.
|
||||||
|
|
||||||
|
```
|
||||||
|
(( TgtProcName = "schtasks.exe" AND TgtProcCmdLine ContainsCIS "/create" ) OR ( SrcProcCmdLine ContainsCIS "New-ScheduledTask" OR SrcProcCmdScript ContainsCIS "New-ScheduledTask" )) AND SrcProcParentName Not In ("services.exe","OfficeClickToRun.exe")
|
||||||
|
```
|
||||||
|
|
||||||
### T1546.002 Screensaver
|
### T1546.002 Screensaver
|
||||||
Atomics: [T1546.002](https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1546.002/T1546.002.md)
|
Atomics: [T1546.002](https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1546.002/T1546.002.md)
|
||||||
|
|||||||
Reference in New Issue
Block a user