5

我想在我的 OSX 上玩 hydra,但我不知道有什么问题。

brew info hydra

输出:

hydra: stable 8.3 (bottled), HEAD Network logon cracker which supports
many services https://www.thc.org/thc-hydra/
/usr/local/Cellar/hydra/8.3 (14 files, 1.2M) *   Poured from bottle on
2016-08-20 at 15:28:25 From:
https://github.com/Homebrew/homebrew-core/blob/master/Formula/hydra.rb
==> Dependencies Build: pkg-config ✘ Required: openssl ✔ Optional: subversion ✘, libidn ✘, libssh ✔, pcre ✘, gtk+ ✘
==> Options
--with-gtk+     Build with gtk+ support
--with-libidn   Build with libidn support
--with-libssh   Build with libssh support
--with-pcre     Build with pcre support
--with-subversion   Build with subversion support
--HEAD  Install HEAD version

当我尝试启动时:

hydra -l user -P /Users/alex/Downloads/list_pwd.txt 192.168.1.3 ssh

我得到:

[ERROR] Compiled without LIBSSH v0.4.x support, module is not
available!
4

1 回答 1

16

今天刚刚遇到这个错误,似乎出于某种原因他们实际上并没有用 hydra 编译它,但手动操作应该很容易。这是我为使其正常工作所做的:

brew uninstall hydra 
brew install -v --with-libssh hydra

那应该使用适当的 ssh 模块编译 hydra,并且应该是一个很好的-v选择,只是为了确认编译时 libssh 没有实际错误。

于 2016-11-21T20:16:50.300 回答