Execution of File Written or Modified by Microsoft Office
Identifies an executable created by a Microsoft Office application and subsequently executed. These processes are often launched via scripts inside documents or during exploitation of Microsoft Office applications.
Elastic rule (View on GitHub)
1[metadata]
2creation_date = "2020/09/02"
3integration = ["endpoint"]
4maturity = "production"
5updated_date = "2024/08/06"
6
7[rule]
8author = ["Elastic"]
9description = """
10Identifies an executable created by a Microsoft Office application and subsequently executed. These processes are often
11launched via scripts inside documents or during exploitation of Microsoft Office applications.
12"""
13from = "now-120m"
14index = ["logs-endpoint.events.process-*", "logs-endpoint.events.file-*", "endgame-*"]
15interval = "60m"
16language = "eql"
17license = "Elastic License v2"
18name = "Execution of File Written or Modified by Microsoft Office"
19note = """## Triage and analysis
20
21### Investigating Execution of File Written or Modified by Microsoft Office
22
23Microsoft Office, a widely used suite of productivity applications, is frequently targeted by attackers due to its popularity in corporate environments. 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.
24
25This rule searches for executable files written by MS Office applications executed in sequence. This is most likely the result of the execution of malicious documents or exploitation for initial access or privilege escalation. This rule can also detect suspicious processes masquerading as the MS Office applications.
26
27#### Possible investigation steps
28
29- Investigate the process execution chain (parent process tree) for unknown processes. Examine their executable files for prevalence, whether they are located in expected locations, and if they are signed with valid digital signatures.
30- Investigate other alerts associated with the user/host during the past 48 hours.
31- Retrieve MS Office documents received and opened by the user that could cause this behavior. Common locations include, but are not limited to, the Downloads and Document folders and the folder configured at the email client.
32- Determine if the collected files are malicious:
33 - Use a private sandboxed malware analysis system to perform analysis.
34 - Observe and collect information about the following activities:
35 - Attempts to contact external domains and addresses.
36 - File and registry access, modification, and creation activities.
37 - Service creation and launch activities.
38 - Scheduled task creation.
39 - Use the PowerShell `Get-FileHash` cmdlet to get the files' SHA-256 hash values.
40 - Search for the existence and reputation of the hashes in resources like VirusTotal, Hybrid-Analysis, CISCO Talos, Any.run, etc.
41
42### False positive analysis
43
44- This activity is unlikely to happen legitimately. Benign true positives (B-TPs) can be added as exceptions if necessary.
45
46### Response and remediation
47
48- Initiate the incident response process based on the outcome of the triage.
49- Isolate the involved host to prevent further post-compromise behavior.
50- 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.
51- If the triage identified malware, search the environment for additional compromised hosts.
52 - Implement temporary network rules, procedures, and segmentation to contain the malware.
53 - Stop suspicious processes.
54 - Immediately block the identified indicators of compromise (IoCs).
55 - Inspect the affected systems for additional malware backdoors like reverse shells, reverse proxies, or droppers that attackers could use to reinfect the system.
56- Remove and block malicious artifacts identified during triage.
57- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
58- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
59 - If the malicious file was delivered via phishing:
60 - Block the email sender from sending future emails.
61 - Block the malicious web pages.
62 - Remove emails from the sender from mailboxes.
63 - Consider improvements to the security awareness program.
64- 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).
65"""
66risk_score = 73
67rule_id = "0d8ad79f-9025-45d8-80c1-4f0cd3c5e8e5"
68severity = "high"
69tags = [
70 "Domain: Endpoint",
71 "OS: Windows",
72 "Use Case: Threat Detection",
73 "Tactic: Execution",
74 "Resources: Investigation Guide",
75 "Data Source: Elastic Endgame",
76 "Data Source: Elastic Defend",
77]
78type = "eql"
79
80query = '''
81sequence with maxspan=2h
82 [file where host.os.type == "windows" and event.type != "deletion" and file.extension : "exe" and
83 (process.name : "WINWORD.EXE" or
84 process.name : "EXCEL.EXE" or
85 process.name : "OUTLOOK.EXE" or
86 process.name : "POWERPNT.EXE" or
87 process.name : "eqnedt32.exe" or
88 process.name : "fltldr.exe" or
89 process.name : "MSPUB.EXE" or
90 process.name : "MSACCESS.EXE")
91 ] by host.id, file.path
92 [process where host.os.type == "windows" and event.type == "start" and
93 not (process.name : "NewOutlookInstaller.exe" and process.code_signature.subject_name : "Microsoft Corporation" and process.code_signature.trusted == true) and
94 not (process.name : "ShareFileForOutlook-v*.exe" and process.code_signature.subject_name : "Citrix Systems, Inc." and process.code_signature.trusted == true)
95 ] by host.id, process.executable
96'''
97
98
99[[rule.threat]]
100framework = "MITRE ATT&CK"
101
102[rule.threat.tactic]
103id = "TA0002"
104name = "Execution"
105reference = "https://attack.mitre.org/tactics/TA0002/"
106[[rule.threat]]
107framework = "MITRE ATT&CK"
108[[rule.threat.technique]]
109id = "T1566"
110name = "Phishing"
111reference = "https://attack.mitre.org/techniques/T1566/"
112[[rule.threat.technique.subtechnique]]
113id = "T1566.001"
114name = "Spearphishing Attachment"
115reference = "https://attack.mitre.org/techniques/T1566/001/"
116
117[[rule.threat.technique.subtechnique]]
118id = "T1566.002"
119name = "Spearphishing Link"
120reference = "https://attack.mitre.org/techniques/T1566/002/"
121
122
123
124[rule.threat.tactic]
125id = "TA0001"
126name = "Initial Access"
127reference = "https://attack.mitre.org/tactics/TA0001/"
Triage and analysis
Investigating Execution of File Written or Modified by Microsoft Office
Microsoft Office, a widely used suite of productivity applications, is frequently targeted by attackers due to its popularity in corporate environments. 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.
This rule searches for executable files written by MS Office applications executed in sequence. This is most likely the result of the execution of malicious documents or exploitation for initial access or privilege escalation. This rule can also detect suspicious processes masquerading as the MS Office applications.
Possible investigation steps
- Investigate the process execution chain (parent process tree) for unknown processes. Examine their executable files for prevalence, whether they are located in expected locations, and if they are signed with valid digital signatures.
- Investigate other alerts associated with the user/host during the past 48 hours.
- Retrieve MS Office documents received and opened by the user that could cause this behavior. Common locations include, but are not limited to, the Downloads and Document folders and the folder configured at the email client.
- Determine if the collected files are malicious:
- Use a private sandboxed malware analysis system to perform analysis.
- Observe and collect information about the following activities:
- Attempts to contact external domains and addresses.
- File and registry access, modification, and creation activities.
- Service creation and launch activities.
- Scheduled task creation.
- Observe and collect information about the following activities:
- Use the PowerShell
Get-FileHash
cmdlet to get the files' SHA-256 hash values.- Search for the existence and reputation of the hashes in resources like VirusTotal, Hybrid-Analysis, CISCO Talos, Any.run, etc.
- Use a private sandboxed malware analysis system to perform analysis.
False positive analysis
- This activity is unlikely to happen legitimately. Benign true positives (B-TPs) can be added as exceptions if necessary.
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.
- 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.
- 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.
- 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).
Related rules
- Component Object Model Hijacking
- Downloaded Shortcut Files
- Downloaded URL Files
- Windows Registry File Creation in SMB Share
- Persistence via WMI Standard Registry Provider