-
Python源码实现暴力破解SSH
资源介绍
# sshBrute
# ssh爆破工具
## * 用途
基于字典文件破解ssh账号密码
## * 依赖
pip install paramiko
## * 使用方法:
Usage: sshBrute.py [options] host
Options:
-h, --help show this help message and exit
-p PORT, --port=PORT port, default 22
-u USERNAME, --username=USERNAME
username, default root(Linux)
-f PWD_PATH, --file=PWD_PATH
password dict file,default dict/password.txt
## * 其它
* sshBrute.py ,单线程实现
* sshBruteV2.py ,多线程实现