22 - SSH
rbash์์ ssh๋ฅผ ์ฐ๊ฒฐํ ๋ ssh ์ฐ๊ฒฐ ๋ช ๋ น์ -t bash๋ฅผ ์ถ๊ฐํ ๊ฒฝ์ฐ bash์๋ก ์ฐ๊ฒฐ ๊ฐ๋ฅ
sshpass -p 'P@55W0rd1!2@' ssh mindy@10.10.10.51 -t bash
ssh-audit.py <FQDN/IP> Remote security audit against the target SSH service.
ssh <user>@<FQDN/IP> Log in to the SSH server using the SSH client.
ssh -i private.key <user>@<FQDN/IP> Log in to the SSH server using private key.
ssh <user>@<FQDN/IP> -o PreferredAuthentications=password Enforce password-based authentication.
Last updated