先安装nmap,并扫描本地端口
nmap -sS -O -P0 target_ip
安装hydra,并随便装找个若密码字典对mysql、ssh进行猜解
hydra target_ip mysql -l username -p passwd.txt -e ns -t 10
# -l 用户名
# -p 密码文件
# -e 检查空密码
# -t 线程
nmap -sS -O -P0 target_ip
hydra target_ip mysql -l username -p passwd.txt -e ns -t 10
# -l 用户名
# -p 密码文件
# -e 检查空密码
# -t 线程
Copyright © 2016 yjiang's cake