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
HISTFILE
. When a user logs off a system, this information is flushed to a file in the user's home directory called~/.bash_history
. 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 (
history -c
) or deleting the bash history filerm ~/.bash_history
.On Windows hosts, PowerShell has two different command history providers: the built-in history and the command history managed by the
PSReadLine
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
PSReadLine
command history tracks the commands used in all PowerShell sessions and writes them to a file ($env:APPDATA\Microsoft\Windows\PowerShell\PSReadLine\ConsoleHost_history.txt
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
Clear-History
to flush the entire command history from a current PowerShell session. This, however, will not delete/flush theConsoleHost_history.txt
file. Adversaries may also delete theConsoleHost_history.txt
file or edit its contents to hide PowerShell commands they have run.(Citation: Sophos PowerShell command audit)(Citation: Sophos PowerShell Command History Forensics)
-
Atomic Test #8 - Use Space Before Command to Avoid Logging to History
-
Atomic Test #10 - Clear Powershell History by Deleting History File
Clears bash history via rm
Supported Platforms: Linux, macOS
rm ~/.bash_history
Clears bash history via rm
Supported Platforms: Linux, macOS
echo "" > ~/.bash_history
Clears bash history via cat /dev/null
Supported Platforms: Linux, macOS
cat /dev/null > ~/.bash_history
Clears bash history via a symlink to /dev/null
Supported Platforms: Linux, macOS
ln -sf /dev/null ~/.bash_history
Clears bash history via truncate
Supported Platforms: Linux
truncate -s0 ~/.bash_history
Clears the history of a bunch of different shell types by setting the history size to zero
Supported Platforms: Linux, macOS
unset HISTFILE
export HISTFILESIZE=0
history -c
Clears the history and disable bash history logging of the current shell and future shell sessions
Supported Platforms: Linux, macOS
set +o history
echo 'set +o history' >> ~/.bashrc
. ~/.bashrc
history -c
sed -i 's/set +o history//g' ~/.bashrc
. ~/.bashrc
set -o history
Using a space before a command causes the command to not be logged in the Bash History file
Supported Platforms: Linux, macOS
hostname
whoami
Prevents Powershell history
Supported Platforms: Windows
Set-PSReadlineOption –HistorySaveStyle SaveNothing
Set-PSReadLineOption -HistorySaveStyle SaveIncrementally
Clears Powershell history
Supported Platforms: Windows
Remove-Item (Get-PSReadlineOption).HistorySavePath