SSH
Uso básico
ssh {user}@{ip}
# ex: ssh kali@192.168.0.7Verificar tipo de login
$ ssh -v kali@192.168.0.7
# OUTPUT
# ...
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,password # <--- AQUI
debug1: Next authentication method: publickey
# ...Permitir autenticação root
Last updated