2016-08-21 3 views
5

मैं अपने ओएसएक्स पर हाइड्रा के साथ खिलौना करना चाहता हूं, लेकिन मुझे पता नहीं चल रहा है कि समस्या क्या है।ERROR LIBSSH v0.4.x समर्थन के बिना संकलित, मॉड्यूल उपलब्ध नहीं है

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! 

उत्तर

12

बस आज इस त्रुटि के पार आया और यह वे डॉन लगता है कुछ कारणों से इसे हाइड्रा के साथ वास्तव में संकलित नहीं करते हैं लेकिन यह मैन्युअल रूप से करने के लिए काफी आसान होना चाहिए। यह है कि मैं क्या यह काम कर पाने के लिए किया था है:

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

कि उचित ssh मॉड्यूल के साथ हीड्रा संकलन चाहिए और अच्छा होना चाहिए -v विकल्प जाने के लिए बस की पुष्टि करने के लिए जब संकलन वहाँ libssh के साथ कोई वास्तविक त्रुटियां थीं।

संबंधित मुद्दे