Dolphin的博客

crunch使用

crunch是一个密码字典生成工具。

有时可能会存在忘记密码的情况,但是记得其中的单词,可以使用如下命令生成密码字典。

1
crunch 4 5 -o a.txt -p dog cat bird

然后再使用Hydra工具尝试取回密码:

1
hydra -L ~/user.txt -P ~/a.txt -t 1 -vV -e ns 192.168.32.105 ssh

常见问题

1
[ERROR] Compiled without LIBSSH v0.4.x support, module is not available!
1
2
3
4
5
6
7
8
wget http://www.libssh.org/files/0.4/libssh-0.4.8.tar.gz
tar zxf libssh-0.4.8.tar.gz
cd libssh-0.4.8
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug -DWITH_SSH1=ON ..
make
sudo make install