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