PH_Rule_SIGMA_2531
Enabled
Detects the creation or update of a scheduled task to run with "NT AUTHORITY\SYSTEM" privileges. This rule is adapted from https://github.com/SigmaHQ/sigma/blob/master/rules/windows/process_creation/proc_creation_win_schtasks_system.yml
7
Security
Execution
Execution consists of techniques that result in adversary-controlled code running on a local or remote system. Techniques that run malicious code are often paired with techniques from all other tactics to achieve broader goals, like exploring a network or stealing data. For example, an adversary might use a remote access tool to run a PowerShell script that does Remote System Discovery.
https://attack.mitre.org/tactics/TA0002T1053.005
Scheduled Task/Job: Scheduled Task
Adversaries may abuse the Windows Task Scheduler to perform task scheduling for initial or recurring execution of malicious code for persistence. The Windows Task Scheduler can also be abused to conduct remote Execution as part of Lateral Movement and or to run a process under the context of a specified account (such as SYSTEM).
https://attack.mitre.org/techniques/T1053/005Server
Windows Sysmon via FortiSIEM Agent
Correlation
No remediation guidance specified
If the following pattern or patterns match an ingested event within the given time window in seconds, trigger an incident.
300 seconds
If the following defined pattern/s occur within a 300 second time window.
Filter
This is the named definition of the event query, this is important if multiple subpatterns are defined to distinguish them.
This is the query logic that matches incoming events
eventType="Win-Sysmon-1-Create-Process" AND (procName REGEXP "\\schtasks\.exe$" AND command REGEXP ".* /change .*|.* /create .*" AND command REGEXP ".*/ru .*" AND command REGEXP ".* SYSTEM .*|.*NT AUT.*") AND ((parentProcName NOT REGEXP ".*\\AppData\\Local\\Temp\\.*" OR parentProcName NOT REGEXP ".*TeamViewer_\.exe.*" OR procName NOT REGEXP "\\schtasks\.exe$" OR command NOT REGEXP ".*/TN TVInstallRestore.*") AND (command NOT REGEXP ".*/Create /F /RU System /SC WEEKLY /TN AviraSystemSpeedupVerify /TR .*|.*/VERIFY /VERYSILENT /NOSTART /NODOTNET /NORESTART\" /RL HIGHEST.*|.*C:\\Program Files \(x86\)\\Avira\\System Speedup\\setup\\avira_speedup_setup\.exe.*"))
This defines how matching events are aggregated, only events with the same matching attribute values are grouped into one unique incident ID
command,hostName,parentProcName,procName
This is most typically a numerical constraint that defines when the rule should trigger an incident
COUNT(*) >= 1
This section defines which fields in matching raw events should be mapped to the incident attributes in the resulting incident.
The available raw event attributes to map are limited to the group by attributes and the aggregate event constraint fields for each subpattern
command = Filter.command,
hostName = Filter.hostName,
parentProcName = Filter.parentProcName,
procName = Filter.procName