尝试使用THC-HYDRA运行以下查询后:
hydra -l ROOT -P pass.lst -M hosts.lst ssh
我得到了这个回应:
Hydra v7.5 (c)2013 by van Hauser/THC & David Maciejak - for legal purposes only
Hydra (http://www.thc.org/thc-hydra) starting at 2013-11-15 16:35:56
[ERROR] Compiled without LIBSSH v0.4.x support, module is not available!
我从libssh.org下载了LIBSSH并安装它无济于事。互联网似乎没有答案,但我可以看到其他人提出同样的问题。
非常感谢, 用户。
答案 0 :(得分:2)
我遇到了同样的问题。我编译然后意识到当我试图在我的路由器上运行它时忘记了libssh所以我安装它并重新编译;它还没有用。 我试着“干净”,它就像一个魅力。
答案 1 :(得分:1)
apt-get purge hydra
apt-get install cmake libssl-dev
cd /usr/local/src
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
make install
cd /usr/local/src
wget http://freeworld.thc.org/releases/hydra-6.3-src.tar.gz
tar zxf hydra-6.3-src.tar.gz
cd hydra-6.3-src
./configure
make
make install