Files
keyboardcrunch-sentinelone-…/queries/windows/scheduled_tasks_creation.yml
T
2020-12-05 21:45:38 -06:00

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: