0%

hydra问题

Kali2.0里面的hydra是8.6版本的,在测试爆破3389时,能够正常运行,但是爆不出测试机的正确密码。

问题

在Kali2.0上用hydra测试爆破3389时,爆破不出测试机的正确密码。一直在跳:

1
2
3
4
5
[STATUS] 1.00 tries/min, 5 tries in 00:00h, 0 to do in 03:00h, 1 active
[STATUS] 0.83 tries/min, 5 tries in 00:00h, 0 to do in 03:00h, 1 active
[STATUS] 0.56 tries/min, 5 tries in 00:00h, 0 to do in 03:00h, 1 active
[STATUS] 0.36 tries/min, 5 tries in 00:00h, 0 to do in 03:00h, 1 active
[STATUS] 0.33 tries/min, 5 tries in 00:00h, 0 to do in 03:00h, 1 active

不知道啥意思,反正是爆破不出来,肯定有问题。

尝试

想着是不是版本太低了,升级了一下,把hydra升级到当时的最新版本:apt install hydra
跑了之后结果是

1
[ERROR] Compiled without FREERDP2 support, module not available!

emmm,貌似少了一个模块,本来想安装这个模块的,但是看了下,安装太慢,而且太麻烦了。

1
https://github.com/FreeRDP/FreeRDP

别人的安装记录

1
https://www.jianshu.com/p/86638f0e89d7

解决

还是到处搜啊,在Google上搜索到了其他人提交的issueI have error with [ERROR] Compiled without FREERDP2 support, module not available!

编译安装最新版hydra,如下:

1
2
3
4
5
6
7
git clone https://github.com/vanhauser-thc/thc-hydra.git
cd thc-hydra
sudo apt install freerdp2-dev
make clean
./configure
make
make install

在kali2.0上测试成功。
image