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

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.
  • 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

to-top