Cross-source coverage

T1562.003 / ATT&CK

Impair Defenses: Impair Command History Logging

ATT&CK has retired this technique. Rules still tag it; the current id is T1690 Prevent Command History Logging.

9 rules across 2 sources.

From MITRE ATT&CK 19.2

Adversaries may impair command history logging to hide commands they run on a compromised system. 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, 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 HISTCONTROL environment variable keeps track of what should be saved by the history command and eventually into the ~/.bash_history file when a user logs out. HISTCONTROL does not exist by default on macOS, but can be set by the user and will be respected. The HISTFILE environment variable is also used in some ESXi systems.

Adversaries may clear the history environment variable (unset HISTFILE) or set the command history size to zero (export HISTFILESIZE=0) to prevent logging of commands. Additionally, HISTCONTROL can be configured to ignore commands that start with a space by simply setting it to "ignorespace". HISTCONTROL can also be set to ignore duplicate commands by setting it to "ignoredups". In some Linux systems, this is set by default to "ignoreboth" which covers both of the previous examples. This means that “ ls” will not be saved, but “ls” would be saved by history. Adversaries can abuse this to operate without leaving traces by simply prepending a space to all of their terminal commands.

On Windows systems, the PSReadLine module tracks commands used in all PowerShell sessions and writes them to a file ($env:APPDATA\Microsoft\Windows\PowerShell\PSReadLine\ConsoleHost_history.txt by default). Adversaries may change where these logs are saved using Set-PSReadLineOption -HistorySavePath {File Path}. This will cause ConsoleHost_history.txt to stop receiving logs. Additionally, it is possible to turn off logging to this file using the PowerShell command Set-PSReadlineOption -HistorySaveStyle SaveNothing.

Adversaries may also leverage a Network Device CLI on network devices to disable historical command logging (e.g. no logging).

Tactics
Stealth
Platforms
ESXi · Linux · macOS · Network Devices · Windows
Telemetry

socfortress/Wazuh-Rules

8 rules
Detection Severity Format
Bash history cleared via history -c (T1562.003) High Wazuh XML
Command history file cleared (T1562.003) High Wazuh XML
HISTFILE redirected to /dev/null (T1562.003) High Wazuh XML
HISTFILESIZE or HISTSIZE set to 0 (T1562.003) High Wazuh XML
HISTFILE variable unset (T1562.003) High Wazuh XML
Suspicious registry modification detected: Disabling command line auditing (T1562.003 - Impair Command History Logging) via with value . · win.eventdata.targetObject = (?i)^HKLM\\\\Software\\\\Microsoft\\\\Windows\\\\CurrentVer…, win.eventdata.details = (?i)DWORD\s*\(0x0+\) High Wazuh XML
HISTCONTROL set to ignore logging behavior (T1562.003) Medium Wazuh XML
HISTIGNORE variable modified to ignore commands (T1562.003) Medium Wazuh XML

panther-labs/panther-analysis

1 rule
Detection Severity Format
AWS Bedrock Model Invocation Logging Configuration Deleted Medium Panther Python

Detection rules belong to the projects that publish them and remain under their own licenses. This site indexes and links to them; it claims no rights in them.