Adversaries may use Valid Accounts to log into remote machines using Secure Shell (SSH). The adversary may then perform actions as the logged-on user.
SSH is a protocol that allows authorized users to open remote shells on other computers. Many Linux and macOS versions come with SSH installed by default, although typically disabled until the user enables it. The SSH server can be configured to use standard password authentication or public-private keypairs in lieu of or in addition to a password. In this authentication scenario, the user’s public key must be in a special file on the computer running the server that lists which keypairs are allowed to login as that user.
ID | Name | Description |
---|---|---|
G0087 | APT39 |
APT39 used secure shell (SSH) to move laterally among their targets.[1] |
S0154 | Cobalt Strike |
Cobalt Strike can SSH to a remote service.[2][3] |
S0363 | Empire |
Empire contains modules for executing commands over SSH as well as in-memory VNC agent injection.[4] |
G0046 | FIN7 |
FIN7 has used SSH to move laterally through victim environments.[5] |
G0117 | Fox Kitten |
Fox Kitten has used the PuTTY and Plink tools for lateral movement.[6] |
G0036 | GCMAN | |
S0599 | Kinsing | |
G0065 | Leviathan | |
G0045 | menuPass |
menuPass has used Putty Secure Copy Client (PSCP) to transfer data.[10] |
G0049 | OilRig | |
G0106 | Rocke | |
G0139 | TeamTNT |
TeamTNT has used SSH to connect back to victim machines.[13] |
G0088 | TEMP.Veles |
TEMP.Veles has relied on encrypted SSH-based tunnels to transfer tools and for remote command/program execution.[14] |
ID | Mitigation | Description |
---|---|---|
M1042 | Disable or Remove Feature or Program |
Disable the SSH daemon on systems that do not require it. For macOS ensure Remote Login is disabled under Sharing Preferences.[15] |
M1032 | Multi-factor Authentication |
Require multi-factor authentication for SSH connections wherever possible, such as password protected SSH keys. |
M1018 | User Account Management |
Limit which user accounts are allowed to login via SSH. |
ID | Data Source | Data Component |
---|---|---|
DS0028 | Logon Session | Logon Session Creation |
DS0029 | Network Traffic | Network Connection Creation |
DS0009 | Process | Process Creation |
Use of SSH may be legitimate depending on the environment and how it’s used. Other factors, such as access patterns and activity that occurs after a remote login, may indicate suspicious or malicious behavior with SSH. Monitor for user accounts logged into systems they would not normally access or access patterns to multiple systems over a relatively short period of time.
On macOS systems log show --predicate 'process = "sshd"'
can be used to review incoming SSH connection attempts for suspicious activity. The command log show --info --predicate 'process = "ssh" or eventMessage contains "ssh"'
can be used to review outgoing SSH connection activity.[15]
On Linux systems SSH activity can be found in the logs located in /var/log/auth.log
or /var/log/secure
depending on the distro you are using.