22 - SSH
Introduction
Basic enumeration
nmap -p22 -sC -sV -n <TARGET>sudo nmap --script=ssh2-enum-algos -p22 -n <TARGET>ssh <USER>@<IP> -oKexAlgorithms=+diffie-hellman-group1-sha1 sudo nmap --script=ssh-hostkey -p22 -n <TARGET>sudo nmap --script=sshv1 -p22 -n <TARGET>sudo nmap --script=ssh-auth-methods --script-args="ssh.user=<USERNAME>" -p22 -n <TARGET>Last updated