auto-generated queries from markdown notes

This commit is contained in:
@
2020-11-23 12:08:31 -06:00
parent a3c07c2199
commit 7c09d914d1
85 changed files with 1414 additions and 0 deletions
@@ -0,0 +1,19 @@
title: Scheduled Tasks Creation
description: 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.
author: keyboardcrunch
date: 10/10/2020
modified: null
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: null
tags: null