Как заставить thc-гидру работать из доморощенной установки?

6938
ihatetoregister

Я установил thc-hydra (инструмент грубой силы) на моей машине с OS X, используя:

brew install hydra 

Но при попытке взломать пароль ssh на моем сервере я получаю следующее сообщение об ошибке:

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

Как мне обойти это?

3

1 ответ на вопрос

8
rprimus

brew info hydra shows:

hydra: stable 8.1 (bottled), HEAD https://www.thc.org/thc-hydra/ Not installed From: https://github.com/Homebrew/homebrew/blob/master/Library/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 

To allow ssh support, install using command:

brew install hydra --with-libssh 

It is always a good idea to use brew info before running brew install