Adversaries may establish persistence by executing malicious content triggered by a user’s shell.~/.bash_profile
and~/.bashrc
are shell scripts that contain shell commands. These files are executed in a user's context when a new shell opens or when a user logs in so that their environment is set correctly.
is executed for login shells and
/.bash_profile/.bashrc
is executed for interactive non-login shells. This means that when a user logs in (via username and password) to the console (either locally or remotely via something like SSH), thescript is executed before the initial command prompt is returned to the user. After that, every time a new shell is opened, the
/.bash_profile/.bashrc
script is executed. This allows users more fine-grained control over when they want certain commands executed. These shell scripts are meant to be written to by the local user to configure their own environment.The macOS Terminal.app is a little different in that it runs a login shell by default each time a new terminal window is opened, thus calling
each time instead of
/.bash_profile/.bashrc
.Adversaries may abuse these shell scripts by inserting arbitrary shell commands that may be used to execute other binaries to gain persistence. Every time the user logs in or opens a new shell, the modified ~/.bash_profile and/or ~/.bashrc scripts will be executed.(Citation: amnesia malware)
Adds a command to the .bash_profile file of the current user
Supported Platforms: macOS, Linux
Name | Description | Type | Default Value |
---|---|---|---|
command_to_add | Command to add to the .bash_profile file | string | /path/to/script.py |
echo "#{command_to_add}" >> ~/.bash_profile
Adds a command to the .bashrc file of the current user
Supported Platforms: macOS, Linux
Name | Description | Type | Default Value |
---|---|---|---|
command_to_add | Command to add to the .bashrc file | string | /path/to/script.py |
echo "#{command_to_add}" >> ~/.bashrc