Clearing Windows Console History
Identifies when a user attempts to clear console history. An adversary may clear the command history of a compromised account to conceal the actions undertaken during an intrusion.
Elastic rule (View on GitHub)
1[metadata]
2creation_date = "2021/11/22"
3integration = ["endpoint", "windows", "system", "m365_defender", "sentinel_one_cloud_funnel", "crowdstrike"]
4maturity = "production"
5updated_date = "2024/11/02"
6min_stack_version = "8.14.0"
7min_stack_comments = "Breaking change at 8.14.0 for the Windows Integration."
8
9[rule]
10author = ["Austin Songer"]
11description = """
12Identifies when a user attempts to clear console history. An adversary may clear the command history of a compromised
13account to conceal the actions undertaken during an intrusion.
14"""
15from = "now-9m"
16index = [
17 "winlogbeat-*",
18 "logs-endpoint.events.process-*",
19 "logs-windows.forwarded*",
20 "logs-windows.sysmon_operational-*",
21 "endgame-*",
22 "logs-system.security*",
23 "logs-m365_defender.event-*",
24 "logs-sentinel_one_cloud_funnel.*",
25 "logs-crowdstrike.fdr*",
26]
27language = "eql"
28license = "Elastic License v2"
29name = "Clearing Windows Console History"
30note = """## Triage and analysis
31
32### Investigating Clearing Windows Console History
33
34PowerShell is one of the main tools system administrators use for automation, report routines, and other tasks. This makes it available for use in various environments, and creates an attractive way for attackers to execute code.
35
36Attackers can try to cover their tracks by clearing PowerShell console history. PowerShell has two different ways of logging commands: the built-in history and the command history managed by the PSReadLine module. This rule looks for the execution of commands that can clear the built-in PowerShell logs or delete the `ConsoleHost_history.txt` file.
37
38#### Possible investigation steps
39
40- 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.
41- Identify the user account that performed the action and whether it should perform this kind of action.
42- Contact the account owner and confirm whether they are aware of this activity.
43- Investigate other alerts associated with the user/host during the past 48 hours.
44 - Verify if any other anti-forensics behaviors were observed.
45- Investigate the PowerShell logs on the SIEM to determine if there was suspicious behavior that an attacker may be trying to cover up.
46
47### False positive analysis
48
49- This activity is unlikely to happen legitimately. Benign true positives (B-TPs) can be added as exceptions if necessary.
50
51### Response and remediation
52
53- Initiate the incident response process based on the outcome of the triage.
54- Isolate the involved host to prevent further post-compromise behavior.
55- 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.
56- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
57- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
58- 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).
59 - Ensure that PowerShell auditing policies and log collection are in place to grant future visibility.
60"""
61references = [
62 "https://stefanos.cloud/kb/how-to-clear-the-powershell-command-history/",
63 "https://www.shellhacks.com/clear-history-powershell/",
64 "https://community.sophos.com/sophos-labs/b/blog/posts/powershell-command-history-forensics",
65]
66risk_score = 47
67rule_id = "b5877334-677f-4fb9-86d5-a9721274223b"
68severity = "medium"
69tags = [
70 "Domain: Endpoint",
71 "OS: Windows",
72 "Use Case: Threat Detection",
73 "Tactic: Defense Evasion",
74 "Tactic: Execution",
75 "Resources: Investigation Guide",
76 "Data Source: Elastic Endgame",
77 "Data Source: Elastic Defend",
78 "Data Source: System",
79 "Data Source: Microsoft Defender for Endpoint",
80 "Data Source: Sysmon",
81 "Data Source: SentinelOne",
82 "Data Source: Crowdstrike",
83]
84timestamp_override = "event.ingested"
85type = "eql"
86
87query = '''
88process where host.os.type == "windows" and event.type == "start" and
89 (
90 process.name : ("powershell.exe", "pwsh.exe", "powershell_ise.exe") or
91 ?process.pe.original_file_name in ("powershell.exe", "pwsh.dll", "powershell_ise.exe")
92 ) and
93 (
94 process.args : "*Clear-History*" or
95 (process.args : ("*Remove-Item*", "rm") and process.args : ("*ConsoleHost_history.txt*", "*(Get-PSReadlineOption).HistorySavePath*")) or
96 (process.args : "*Set-PSReadlineOption*" and process.args : "*SaveNothing*")
97 )
98'''
99
100
101[[rule.threat]]
102framework = "MITRE ATT&CK"
103[[rule.threat.technique]]
104id = "T1070"
105name = "Indicator Removal"
106reference = "https://attack.mitre.org/techniques/T1070/"
107[[rule.threat.technique.subtechnique]]
108id = "T1070.003"
109name = "Clear Command History"
110reference = "https://attack.mitre.org/techniques/T1070/003/"
111
112
113
114[rule.threat.tactic]
115id = "TA0005"
116name = "Defense Evasion"
117reference = "https://attack.mitre.org/tactics/TA0005/"
118[[rule.threat]]
119framework = "MITRE ATT&CK"
120[[rule.threat.technique]]
121id = "T1059"
122name = "Command and Scripting Interpreter"
123reference = "https://attack.mitre.org/techniques/T1059/"
124[[rule.threat.technique.subtechnique]]
125id = "T1059.001"
126name = "PowerShell"
127reference = "https://attack.mitre.org/techniques/T1059/001/"
128
129
130
131[rule.threat.tactic]
132id = "TA0002"
133name = "Execution"
134reference = "https://attack.mitre.org/tactics/TA0002/"
Triage and analysis
Investigating Clearing Windows Console History
PowerShell is one of the main tools system administrators use for automation, report routines, and other tasks. This makes it available for use in various environments, and creates an attractive way for attackers to execute code.
Attackers can try to cover their tracks by clearing PowerShell console history. PowerShell has two different ways of logging commands: the built-in history and the command history managed by the PSReadLine module. This rule looks for the execution of commands that can clear the built-in PowerShell logs or delete the ConsoleHost_history.txt
file.
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.
- Identify the user account that performed the action and whether it should perform this kind of action.
- Contact the account owner and confirm whether they are aware of this activity.
- Investigate other alerts associated with the user/host during the past 48 hours.
- Verify if any other anti-forensics behaviors were observed.
- Investigate the PowerShell logs on the SIEM to determine if there was suspicious behavior that an attacker may be trying to cover up.
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.
- 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).
- Ensure that PowerShell auditing policies and log collection are in place to grant future visibility.
References
Related rules
- Disabling Windows Defender Security Settings via PowerShell
- Suspicious MS Office Child Process
- Microsoft Build Engine Started by an Office Application
- Adding Hidden File Attribute via Attrib
- Clearing Windows Event Logs