In addition to clearing system logs, an adversary may clear the command history of a compromised account to conceal the actions undertaken during an intrusion. Various command interpreters keep track of the commands users type in their terminal so that users can retrace what they've done.
On Linux and macOS, these command histories can be accessed in a few different ways. While logged in, this command history is tracked in a file pointed to by the environment variable <code>HISTFILE</code>. When a user logs off a system, this information is flushed to a file in the user's home directory called <code>~/.bash_history</code>. The benefit of this is that it allows users to go back to commands they've used before in different sessions.
Adversaries may delete their commands from these logs by manually clearing the history (<code>history -c</code>) or deleting the bash history file <code>rm ~/.bash_history</code>.
On Windows hosts, PowerShell has two different command history providers: the built-in history and the command history managed by the <code>PSReadLine</code> module. The built-in history only tracks the commands used in the current session. This command history is not available to other sessions and is deleted when the session ends.
The <code>PSReadLine</code> command history tracks the commands used in all PowerShell sessions and writes them to a file (<code>$env:APPDATA\Microsoft\Windows\PowerShell\PSReadLine\ConsoleHost_history.txt</code> by default). This history file is available to all sessions and contains all past history since the file is not deleted when the session ends.(Citation: Microsoft PowerShell Command History)
Adversaries may run the PowerShell command <code>Clear-History</code> to flush the entire command history from a current PowerShell session. This, however, will not delete/flush the <code>ConsoleHost_history.txt</code> file. Adversaries may also delete the <code>ConsoleHost_history.txt</code> file or edit its contents to hide PowerShell commands they have run.(Citation: Sophos PowerShell command audit)(Citation: Sophos PowerShell Command History Forensics)
View in MITRE ATT&CK®Capability ID | Capability Description | Mapping Type | ATT&CK ID | ATT&CK Name |
---|---|---|---|---|
AC-2 | Account Management | Protects | T1070.003 | Clear Command History |
AC-3 | Access Enforcement | Protects | T1070.003 | Clear Command History |
AC-5 | Separation of Duties | Protects | T1070.003 | Clear Command History |
AC-6 | Least Privilege | Protects | T1070.003 | Clear Command History |
CA-7 | Continuous Monitoring | Protects | T1070.003 | Clear Command History |
CM-2 | Baseline Configuration | Protects | T1070.003 | Clear Command History |
CM-6 | Configuration Settings | Protects | T1070.003 | Clear Command History |
SI-3 | Malicious Code Protection | Protects | T1070.003 | Clear Command History |
SI-4 | System Monitoring | Protects | T1070.003 | Clear Command History |
SI-7 | Software, Firmware, and Information Integrity | Protects | T1070.003 | Clear Command History |
action.malware.variety.Destroy data | Destroy or corrupt stored data | related-to | T1070.003 | Indicator Removal on Host: Clear Command History |
amazon_inspector | Amazon Inspector | technique_scores | T1070.003 | Clear Command History |