Windows Script Executing PowerShell

Identifies a PowerShell process launched by either cscript.exe or wscript.exe. Observing Windows scripting processes executing a PowerShell script, may be indicative of malicious activity.

Elastic rule (View on GitHub)

  1[metadata]
  2creation_date = "2020/02/18"
  3integration = ["endpoint", "windows"]
  4maturity = "production"
  5min_stack_comments = "New fields added: required_fields, related_integrations, setup"
  6min_stack_version = "8.3.0"
  7updated_date = "2024/03/28"
  8
  9[rule]
 10author = ["Elastic"]
 11description = """
 12Identifies a PowerShell process launched by either cscript.exe or wscript.exe. Observing Windows scripting processes
 13executing a PowerShell script, may be indicative of malicious activity.
 14"""
 15from = "now-9m"
 16index = ["winlogbeat-*", "logs-endpoint.events.process-*", "logs-windows.sysmon_operational-*", "endgame-*"]
 17language = "eql"
 18license = "Elastic License v2"
 19name = "Windows Script Executing PowerShell"
 20note = """## Triage and analysis
 21
 22### Investigating Windows Script Executing PowerShell
 23
 24The Windows Script Host (WSH) is an Windows automation technology, which is ideal for non-interactive scripting needs, such as logon scripting, administrative scripting, and machine automation.
 25
 26Attackers commonly use WSH scripts as their initial access method, acting like droppers for second stage payloads, but can also use them to download tools and utilities needed to accomplish their goals.
 27
 28This rule looks for the spawn of the `powershell.exe` process with `cscript.exe` or `wscript.exe` as its parent process.
 29
 30#### Possible investigation steps
 31
 32- 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.
 33- Investigate commands executed by the spawned PowerShell process.
 34- If unsigned files are found on the process tree, retrieve them and determine if they 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- Determine how the script file was delivered (email attachment, dropped by other processes, etc.).
 44- Investigate other alerts associated with the user/host during the past 48 hours.
 45
 46### False positive analysis
 47
 48- The usage of these script engines by regular users is unlikely. In the case of authorized benign true positives (B-TPs), exceptions can be added.
 49
 50### Response and remediation
 51
 52- Initiate the incident response process based on the outcome of the triage.
 53- Isolate the involved host to prevent further post-compromise behavior.
 54- If the triage identified malware, search the environment for additional compromised hosts.
 55  - Implement temporary network rules, procedures, and segmentation to contain the malware.
 56  - Stop suspicious processes.
 57  - Immediately block the identified indicators of compromise (IoCs).
 58  - Inspect the affected systems for additional malware backdoors like reverse shells, reverse proxies, or droppers that attackers could use to reinfect the system.
 59- Remove and block malicious artifacts identified during triage.
 60- If the malicious file was delivered via phishing:
 61  - Block the email sender from sending future emails.
 62  - Block the malicious web pages.
 63  - Remove emails from the sender from mailboxes.
 64  - Consider improvements to the security awareness program.
 65- Reimage the host operating system and restore compromised files to clean versions.
 66- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
 67- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
 68- 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).
 69"""
 70risk_score = 21
 71rule_id = "f545ff26-3c94-4fd0-bd33-3c7f95a3a0fc"
 72setup = """## Setup
 73
 74If enabling an EQL rule on a non-elastic-agent index (such as beats) for versions <8.2,
 75events will not define `event.ingested` and default fallback for EQL rules was not added until version 8.2.
 76Hence for this rule to work effectively, users will need to add a custom ingest pipeline to populate
 77`event.ingested` to @timestamp.
 78For more details on adding a custom ingest pipeline refer - https://www.elastic.co/guide/en/fleet/current/data-streams-pipeline-tutorial.html
 79"""
 80severity = "low"
 81tags = ["Domain: Endpoint", "OS: Windows", "Use Case: Threat Detection", "Tactic: Initial Access", "Tactic: Execution", "Resources: Investigation Guide", "Data Source: Elastic Endgame", "Data Source: Elastic Defend", "Data Source: Sysmon"]
 82timestamp_override = "event.ingested"
 83type = "eql"
 84
 85query = '''
 86process where host.os.type == "windows" and event.type == "start" and
 87  process.parent.name : ("cscript.exe", "wscript.exe") and process.name : "powershell.exe" and
 88  not (
 89    process.parent.name : "wscript.exe" and
 90    process.parent.args : "?:\\ProgramData\\intune-drive-mapping-generator\\IntuneDriveMapping-VBSHelper.vbs" and
 91    process.parent.args : "?:\\ProgramData\\intune-drive-mapping-generator\\DriveMapping.ps1"
 92  )
 93'''
 94
 95
 96[[rule.threat]]
 97framework = "MITRE ATT&CK"
 98[[rule.threat.technique]]
 99id = "T1566"
100name = "Phishing"
101reference = "https://attack.mitre.org/techniques/T1566/"
102[[rule.threat.technique.subtechnique]]
103id = "T1566.001"
104name = "Spearphishing Attachment"
105reference = "https://attack.mitre.org/techniques/T1566/001/"
106
107
108
109[rule.threat.tactic]
110id = "TA0001"
111name = "Initial Access"
112reference = "https://attack.mitre.org/tactics/TA0001/"
113
114
115[[rule.threat]]
116framework = "MITRE ATT&CK"
117[[rule.threat.technique]]
118id = "T1059"
119name = "Command and Scripting Interpreter"
120reference = "https://attack.mitre.org/techniques/T1059/"
121[[rule.threat.technique.subtechnique]]
122id = "T1059.001"
123name = "PowerShell"
124reference = "https://attack.mitre.org/techniques/T1059/001/"
125[[rule.threat.technique.subtechnique]]
126id = "T1059.005"
127name = "Visual Basic"
128reference = "https://attack.mitre.org/techniques/T1059/005/"
129
130
131
132[rule.threat.tactic]
133id = "TA0002"
134name = "Execution"
135reference = "https://attack.mitre.org/tactics/TA0002/"

Triage and analysis

Investigating Windows Script Executing PowerShell

The Windows Script Host (WSH) is an Windows automation technology, which is ideal for non-interactive scripting needs, such as logon scripting, administrative scripting, and machine automation.

Attackers commonly use WSH scripts as their initial access method, acting like droppers for second stage payloads, but can also use them to download tools and utilities needed to accomplish their goals.

This rule looks for the spawn of the powershell.exe process with cscript.exe or wscript.exe as its parent process.

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 commands executed by the spawned PowerShell process.
  • If unsigned files are found on the process tree, retrieve them and determine if they 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.
  • Determine how the script file was delivered (email attachment, dropped by other processes, etc.).
  • Investigate other alerts associated with the user/host during the past 48 hours.

False positive analysis

  • The usage of these script engines by regular users is unlikely. In the case of authorized benign true positives (B-TPs), exceptions can be added.

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.
  • 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.
  • Reimage the host operating system and restore compromised files to clean versions.
  • 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.
  • 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