Remote Scheduled Task Creation via RPC

Identifies scheduled task creation from a remote source. This could be indicative of adversary lateral movement.

Elastic rule (View on GitHub)

 1[metadata]
 2creation_date = "2022/08/29"
 3integration = ["system", "windows"]
 4maturity = "production"
 5min_stack_comments = "New fields added: required_fields, related_integrations, setup"
 6min_stack_version = "8.3.0"
 7updated_date = "2024/02/01"
 8
 9[rule]
10author = ["Elastic"]
11description = """
12Identifies scheduled task creation from a remote source. This could be indicative of adversary lateral movement.
13"""
14from = "now-9m"
15index = ["winlogbeat-*", "logs-system.security*", "logs-windows.forwarded*"]
16language = "eql"
17license = "Elastic License v2"
18name = "Remote Scheduled Task Creation via RPC"
19note = """## Triage and analysis
20
21### Investigating Remote Scheduled Task Creation
22
23[Scheduled tasks](https://docs.microsoft.com/en-us/windows/win32/taskschd/about-the-task-scheduler) are a great mechanism for persistence and program execution. These features can be used remotely for a variety of legitimate reasons, but at the same time used by malware and adversaries. When investigating scheduled tasks that were set up remotely, one of the first steps should be to determine the original intent behind the configuration and to verify if the activity is tied to benign behavior such as software installation or any kind of network administrator work. One objective for these alerts is to understand the configured action within the scheduled task. This is captured within the registry event data for this rule and can be base64 decoded to view the value.
24
25#### Possible investigation steps
26
27- Review the TaskContent value to investigate the task configured action.
28- Validate if the activity is not related to planned patches, updates, network administrator activity, or legitimate software installations.
29- Further examination should include review of host-based artifacts and network logs from around when the scheduled task was created, on both the source and target machines.
30
31### False positive analysis
32
33- There is a high possibility of benign activity tied to the creation of remote scheduled tasks as it is a general feature within Windows and used for legitimate purposes for a wide range of activity. Any kind of context should be found to further understand the source of the activity and determine the intent based on the scheduled task's contents.
34
35### Related rules
36
37- Service Command Lateral Movement - d61cbcf8-1bc1-4cff-85ba-e7b21c5beedc
38- Remotely Started Services via RPC - aa9a274d-6b53-424d-ac5e-cb8ca4251650
39- Remote Scheduled Task Creation - 954ee7c8-5437-49ae-b2d6-2960883898e9
40
41### Response and remediation
42
43- Initiate the incident response process based on the outcome of the triage.
44- Isolate the involved host to prevent further post-compromise behavior.
45- Remove scheduled task and any other related artifacts.
46- Review privileged account management and user account management settings. Consider implementing group policy object (GPO) policies to further restrict activity, or configuring settings that only allow administrators to create remote scheduled tasks.
47"""
48risk_score = 47
49rule_id = "9c865691-5599-447a-bac9-b3f2df5f9a9d"
50severity = "medium"
51tags = ["Domain: Endpoint", "OS: Windows", "Use Case: Threat Detection", "Tactic: Lateral Movement"]
52type = "eql"
53timestamp_override = "event.ingested"
54
55query = '''
56iam where event.action == "scheduled-task-created" and 
57 winlog.event_data.RpcCallClientLocality : "0" and winlog.event_data.ClientProcessId : "0"
58'''
59
60
61[[rule.threat]]
62framework = "MITRE ATT&CK"
63[[rule.threat.technique]]
64id = "T1021"
65name = "Remote Services"
66reference = "https://attack.mitre.org/techniques/T1021/"
67
68
69[rule.threat.tactic]
70id = "TA0008"
71name = "Lateral Movement"
72reference = "https://attack.mitre.org/tactics/TA0008/"
73[[rule.threat]]
74framework = "MITRE ATT&CK"
75[[rule.threat.technique]]
76id = "T1053"
77name = "Scheduled Task/Job"
78reference = "https://attack.mitre.org/techniques/T1053/"
79[[rule.threat.technique.subtechnique]]
80id = "T1053.005"
81name = "Scheduled Task"
82reference = "https://attack.mitre.org/techniques/T1053/005/"
83
84
85
86[rule.threat.tactic]
87id = "TA0002"
88name = "Execution"
89reference = "https://attack.mitre.org/tactics/TA0002/"

Triage and analysis

Investigating Remote Scheduled Task Creation

Scheduled tasks are a great mechanism for persistence and program execution. These features can be used remotely for a variety of legitimate reasons, but at the same time used by malware and adversaries. When investigating scheduled tasks that were set up remotely, one of the first steps should be to determine the original intent behind the configuration and to verify if the activity is tied to benign behavior such as software installation or any kind of network administrator work. One objective for these alerts is to understand the configured action within the scheduled task. This is captured within the registry event data for this rule and can be base64 decoded to view the value.

Possible investigation steps

  • Review the TaskContent value to investigate the task configured action.
  • Validate if the activity is not related to planned patches, updates, network administrator activity, or legitimate software installations.
  • Further examination should include review of host-based artifacts and network logs from around when the scheduled task was created, on both the source and target machines.

False positive analysis

  • There is a high possibility of benign activity tied to the creation of remote scheduled tasks as it is a general feature within Windows and used for legitimate purposes for a wide range of activity. Any kind of context should be found to further understand the source of the activity and determine the intent based on the scheduled task's contents.
  • Service Command Lateral Movement - d61cbcf8-1bc1-4cff-85ba-e7b21c5beedc
  • Remotely Started Services via RPC - aa9a274d-6b53-424d-ac5e-cb8ca4251650
  • Remote Scheduled Task Creation - 954ee7c8-5437-49ae-b2d6-2960883898e9

Response and remediation

  • Initiate the incident response process based on the outcome of the triage.
  • Isolate the involved host to prevent further post-compromise behavior.
  • Remove scheduled task and any other related artifacts.
  • Review privileged account management and user account management settings. Consider implementing group policy object (GPO) policies to further restrict activity, or configuring settings that only allow administrators to create remote scheduled tasks.

Related rules

to-top