Suspicious Image Load (taskschd.dll) from MS Office
Identifies a suspicious image load (taskschd.dll) from Microsoft Office processes. This behavior may indicate adversarial activity where a scheduled task is configured via Windows Component Object Model (COM). This technique can be used to configure persistence and evade monitoring by avoiding the usage of the traditional Windows binary (schtasks.exe) used to manage scheduled tasks.
Elastic rule (View on GitHub)
1[metadata]
2creation_date = "2020/11/17"
3integration = ["endpoint", "windows"]
4maturity = "production"
5updated_date = "2024/10/15"
6min_stack_version = "8.14.0"
7min_stack_comments = "Breaking change at 8.14.0 for the Windows Integration."
8
9[transform]
10[[transform.osquery]]
11label = "Osquery - Retrieve DNS Cache"
12query = "SELECT * FROM dns_cache"
13
14[[transform.osquery]]
15label = "Osquery - Retrieve All Services"
16query = "SELECT description, display_name, name, path, pid, service_type, start_type, status, user_account FROM services"
17
18[[transform.osquery]]
19label = "Osquery - Retrieve Services Running on User Accounts"
20query = """
21SELECT description, display_name, name, path, pid, service_type, start_type, status, user_account FROM services WHERE
22NOT (user_account LIKE '%LocalSystem' OR user_account LIKE '%LocalService' OR user_account LIKE '%NetworkService' OR
23user_account == null)
24"""
25
26[[transform.osquery]]
27label = "Osquery - Retrieve Service Unsigned Executables with Virustotal Link"
28query = """
29SELECT concat('https://www.virustotal.com/gui/file/', sha1) AS VtLink, name, description, start_type, status, pid,
30services.path FROM services JOIN authenticode ON services.path = authenticode.path OR services.module_path =
31authenticode.path JOIN hash ON services.path = hash.path WHERE authenticode.result != 'trusted'
32"""
33
34
35[rule]
36author = ["Elastic"]
37description = """
38Identifies a suspicious image load (taskschd.dll) from Microsoft Office processes. This behavior may indicate
39adversarial activity where a scheduled task is configured via Windows Component Object Model (COM). This technique can
40be used to configure persistence and evade monitoring by avoiding the usage of the traditional Windows binary
41(schtasks.exe) used to manage scheduled tasks.
42"""
43from = "now-9m"
44index = ["winlogbeat-*", "logs-endpoint.events.library-*", "logs-windows.sysmon_operational-*", "endgame-*"]
45language = "eql"
46license = "Elastic License v2"
47name = "Suspicious Image Load (taskschd.dll) from MS Office"
48note = """## Triage and analysis
49
50### Investigating Suspicious Image Load (taskschd.dll) from MS Office
51
52Microsoft Office, a widely used suite of productivity applications, is frequently targeted by attackers due to its popularity in corporate environments. These attackers exploit its extensive capabilities, like macro scripts in Word and Excel, to gain initial access to systems. They often use Office documents as delivery mechanisms for malware or phishing attempts, taking advantage of their trusted status in professional settings.
53
54`taskschd.dll` provides Command Object Model (COM) interfaces for the Windows Task Scheduler service, allowing developers to programmatically manage scheduled tasks.
55
56This rule looks for an MS Office process loading `taskschd.dll`, which may indicate an adversary abusing COM to configure a scheduled task. This can happen as part of a phishing attack, when a malicious office document registers the scheduled task to download the malware "stage 2" or to establish persistent access.
57
58> **Note**:
59> This investigation guide uses the [Osquery Markdown Plugin](https://www.elastic.co/guide/en/security/master/invest-guide-run-osquery.html) introduced in Elastic Stack version 8.5.0. Older Elastic Stack versions will display unrendered Markdown in this guide.
60
61### Possible investigation steps
62
63- Analyze the host's scheduled tasks and explore the related Windows events to determine if tasks were created or deleted (Event IDs 4698 and 4699).
64- Investigate any abnormal behavior by the subject process, such as network connections, registry or file modifications, and spawned child processes.
65- Investigate other alerts associated with the user/host during the past 48 hours.
66- Inspect the host for suspicious or abnormal behavior in the alert timeframe.
67- Examine the files downloaded during the past 24 hours.
68 - Identify files that are related or can be executed in MS Office.
69 - Identify and analyze macros that these documents contain.
70 - Identify suspicious traits in the office macros, such as encoded or encrypted sections.
71- Retrieve the suspicious files identified in the previous step and determine if they are malicious:
72 - Analyze the file using a private sandboxed analysis system.
73 - Observe and collect information about the following activities in both the sandbox and the alert subject host:
74 - Attempts to contact external domains and addresses.
75 - Use the Elastic Defend network events to determine domains and addresses contacted by the subject process by filtering by the process' `process.entity_id`.
76 - Examine the DNS cache for suspicious or anomalous entries.
77 - $osquery_0
78 - Use the Elastic Defend registry events to examine registry keys accessed, modified, or created by the related processes in the process tree.
79 - Examine the host services for suspicious or anomalous entries.
80 - $osquery_1
81 - $osquery_2
82 - $osquery_3
83 - Retrieve the files' SHA-256 hash values using the PowerShell `Get-FileHash` cmdlet and search for the existence and reputation of the hashes in resources like VirusTotal, Hybrid-Analysis, CISCO Talos, Any.run, etc.
84
85### False positive analysis
86
87- This activity is unlikely to happen legitimately. Any activity that triggered the alert and is not inherently malicious must be monitored by the security team.
88
89### Related Rules
90
91- Suspicious WMI Image Load from MS Office - 891cb88e-441a-4c3e-be2d-120d99fe7b0d
92
93### Response and Remediation
94
95- Initiate the incident response process based on the outcome of the triage.
96- Isolate the involved host to prevent further post-compromise behavior.
97- If the triage identified malware, search the environment for additional compromised hosts.
98 - Implement temporary network rules, procedures, and segmentation to contain the malware.
99 - Stop suspicious processes.
100 - Immediately block the identified indicators of compromise (IoCs).
101 - Inspect the affected systems for additional malware backdoors like reverse shells, reverse proxies, or droppers that attackers could use to reinfect the system.
102- Remove and block malicious artifacts identified during triage.
103- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
104- Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords for these accounts and other potentially compromised credentials, such as email, business systems, and web services.
105- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
106 - If the malicious file was delivered via phishing:
107 - Block the email sender from sending future emails.
108 - Block the malicious web pages.
109 - Remove emails from the sender from mailboxes.
110 - Consider improvements to the security awareness program.
111- Using the incident response data, update logging and audit policies to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).
112"""
113references = [
114 "https://medium.com/threatpunter/detecting-adversary-tradecraft-with-image-load-event-logging-and-eql-8de93338c16",
115 "https://www.clearskysec.com/wp-content/uploads/2020/10/Operation-Quicksand.pdf",
116]
117risk_score = 21
118rule_id = "baa5d22c-5e1c-4f33-bfc9-efa73bb53022"
119setup = """## Setup
120
121If enabling an EQL rule on a non-elastic-agent index (such as beats) for versions <8.2,
122events will not define `event.ingested` and default fallback for EQL rules was not added until version 8.2.
123Hence for this rule to work effectively, users will need to add a custom ingest pipeline to populate
124`event.ingested` to @timestamp.
125For more details on adding a custom ingest pipeline refer - https://www.elastic.co/guide/en/fleet/current/data-streams-pipeline-tutorial.html
126"""
127severity = "low"
128tags = [
129 "Domain: Endpoint",
130 "OS: Windows",
131 "Use Case: Threat Detection",
132 "Tactic: Persistence",
133 "Tactic: Execution",
134 "Data Source: Elastic Endgame",
135 "Data Source: Elastic Defend",
136 "Data Source: Sysmon",
137]
138timestamp_override = "event.ingested"
139type = "eql"
140
141query = '''
142any where host.os.type == "windows" and
143 (event.category : ("library", "driver") or (event.category == "process" and event.action : "Image loaded*")) and
144 process.name : ("WINWORD.EXE", "EXCEL.EXE", "POWERPNT.EXE", "MSPUB.EXE", "MSACCESS.EXE") and
145 (?dll.name : "taskschd.dll" or file.name : "taskschd.dll")
146'''
147
148
149[[rule.threat]]
150framework = "MITRE ATT&CK"
151[[rule.threat.technique]]
152id = "T1053"
153name = "Scheduled Task/Job"
154reference = "https://attack.mitre.org/techniques/T1053/"
155[[rule.threat.technique.subtechnique]]
156id = "T1053.005"
157name = "Scheduled Task"
158reference = "https://attack.mitre.org/techniques/T1053/005/"
159
160
161
162[rule.threat.tactic]
163id = "TA0003"
164name = "Persistence"
165reference = "https://attack.mitre.org/tactics/TA0003/"
166[[rule.threat]]
167framework = "MITRE ATT&CK"
168[[rule.threat.technique]]
169id = "T1053"
170name = "Scheduled Task/Job"
171reference = "https://attack.mitre.org/techniques/T1053/"
172[[rule.threat.technique.subtechnique]]
173id = "T1053.005"
174name = "Scheduled Task"
175reference = "https://attack.mitre.org/techniques/T1053/005/"
176
177
178
179[rule.threat.tactic]
180id = "TA0002"
181name = "Execution"
182reference = "https://attack.mitre.org/tactics/TA0002/"
Triage and analysis
Investigating Suspicious Image Load (taskschd.dll) from MS Office
Microsoft Office, a widely used suite of productivity applications, is frequently targeted by attackers due to its popularity in corporate environments. These attackers exploit its extensive capabilities, like macro scripts in Word and Excel, to gain initial access to systems. They often use Office documents as delivery mechanisms for malware or phishing attempts, taking advantage of their trusted status in professional settings.
taskschd.dll
provides Command Object Model (COM) interfaces for the Windows Task Scheduler service, allowing developers to programmatically manage scheduled tasks.
This rule looks for an MS Office process loading taskschd.dll
, which may indicate an adversary abusing COM to configure a scheduled task. This can happen as part of a phishing attack, when a malicious office document registers the scheduled task to download the malware "stage 2" or to establish persistent access.
Note: This investigation guide uses the Osquery Markdown Plugin introduced in Elastic Stack version 8.5.0. Older Elastic Stack versions will display unrendered Markdown in this guide.
Possible investigation steps
- Analyze the host's scheduled tasks and explore the related Windows events to determine if tasks were created or deleted (Event IDs 4698 and 4699).
- Investigate any abnormal behavior by the subject process, such as network connections, registry or file modifications, and spawned child processes.
- Investigate other alerts associated with the user/host during the past 48 hours.
- Inspect the host for suspicious or abnormal behavior in the alert timeframe.
- Examine the files downloaded during the past 24 hours.
- Identify files that are related or can be executed in MS Office.
- Identify and analyze macros that these documents contain.
- Identify suspicious traits in the office macros, such as encoded or encrypted sections.
- Retrieve the suspicious files identified in the previous step and determine if they are malicious:
- Analyze the file using a private sandboxed analysis system.
- Observe and collect information about the following activities in both the sandbox and the alert subject host:
- Attempts to contact external domains and addresses.
- Use the Elastic Defend network events to determine domains and addresses contacted by the subject process by filtering by the process'
process.entity_id
. - Examine the DNS cache for suspicious or anomalous entries.
- $osquery_0
- Use the Elastic Defend network events to determine domains and addresses contacted by the subject process by filtering by the process'
- Use the Elastic Defend registry events to examine registry keys accessed, modified, or created by the related processes in the process tree.
- Examine the host services for suspicious or anomalous entries.
- $osquery_1
- $osquery_2
- $osquery_3
- Attempts to contact external domains and addresses.
- Retrieve the files' SHA-256 hash values using the PowerShell
Get-FileHash
cmdlet and search for the existence and reputation of the hashes in resources like VirusTotal, Hybrid-Analysis, CISCO Talos, Any.run, etc.
False positive analysis
- This activity is unlikely to happen legitimately. Any activity that triggered the alert and is not inherently malicious must be monitored by the security team.
Related Rules
- Suspicious WMI Image Load from MS Office - 891cb88e-441a-4c3e-be2d-120d99fe7b0d
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.
- If the triage identified malware, search the environment for additional compromised hosts.
- Implement temporary network rules, procedures, and segmentation to contain the malware.
- Stop suspicious processes.
- Immediately block the identified indicators of compromise (IoCs).
- Inspect the affected systems for additional malware backdoors like reverse shells, reverse proxies, or droppers that attackers could use to reinfect the system.
- Remove and block malicious artifacts identified during triage.
- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
- Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords for these accounts and other potentially compromised credentials, such as email, business systems, and web services.
- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
- If the malicious file was delivered via phishing:
- Block the email sender from sending future emails.
- Block the malicious web pages.
- Remove emails from the sender from mailboxes.
- Consider improvements to the security awareness program.
- If the malicious file was delivered via phishing:
- Using the incident response data, update logging and audit policies to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).
References
Related rules
- Persistence via Hidden Run Key Detected
- Scheduled Task Created by a Windows Script
- Adobe Hijack Persistence
- Browser Extension Install
- Command Shell Activity Started via RunDLL32