Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.37 KB

T1139.md

File metadata and controls

29 lines (20 loc) · 1.37 KB

T1139 - Bash History

Bash keeps track of the commands users type on the command-line with the "history" utility. Once a user logs out, the history is flushed to the user’s .bash_history file. For each user, this file resides at the same location: ~/.bash_history. Typically, this file keeps track of the user’s last 500 commands. Users often type usernames and passwords on the command-line as parameters to programs, which then get saved to this file when they log out. Attackers can abuse this by looking through the file for potential credentials. (Citation: External to DA, the OS X Way)

Atomic Tests


Atomic Test #1 - xxxx

xxxx

Supported Platforms: Linux, macOS

Inputs

Name Description Type Default Value
bash_history_filename Path of the bash history file to capture Path ~/.bash_history
bash_history_grep_args grep arguments that filter out specific commands we want to capture Path -e '-p ' -e 'pass' -e 'ssh'
output_file Path where captured results will be placed Path ~/loot.txt

Run it with sh!

cat #{bash_history_filename} | grep #{bash_history_grep_args} > #{output_file}