mirror of
https://github.com/keyboardcrunch/sentinelone-queries
synced 2026-06-08 17:07:13 +00:00
20 lines
667 B
YAML
20 lines
667 B
YAML
title: Scheduled Tasks Creation
|
|
description: Detection of schtasks /create command as well as any use of the New-ScheduledTask*
|
|
cmdlets from powershell.
|
|
author: keyboardcrunch
|
|
date: 10/10/2020
|
|
modified: 05/12/2020
|
|
mitre:
|
|
tactic: Execution, Persistence
|
|
technique: T1053
|
|
subtechnique: 005
|
|
operating_system: windows
|
|
query: (( 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")
|
|
false_positives:
|
|
- NPCAP driver task
|
|
- Legitimate task creation
|
|
tags:
|
|
|