天天看點

hydra 安裝

It´s quite easy to install THC-HYDRA 5.4 with Ubuntu 9.04 (Jaunty Jackalope), just follow these steps:

THC HYDRA Hydra was a software project developed by a German organization called “The Hacker’s Choice” (THC) that uses a dictionary attack to test for weak or simple passwords on one or many remote hosts running a variety of different services. It was designed as a proof-of-concept utility to demonstrate the ease of cracking poorly chosen passwords. The project supports a wide range of services and protocols: TELNET, FTP, HTTP, HTTPS, HTTP-PROXY, SMB, SMBNT, MS-SQL, MYSQL, REXEC, RSH, RLOGIN, CVS, SNMP, SMTP-AUTH, SOCKS5, VNC, POP3, IMAP, NNTP, PCNFS, ICQ, SAP/R3, LDAP, PostgreSQL, Teamspeak, Cisco auth, Cisco enable, and Cisco AAA. It is licensed under version 2.0 of the GNU General Public License with the additional terms that the software may not be used for illegal purposes, and any commercial service or program that uses Hydra must give credit to THC. <a href="http://www.thc.org">http://www.thc.org</a> <a href="http://en.wikipedia.org/wiki/Hydra_(software)">http://en.wikipedia.org/wiki/Hydra_(software)</a>

1. Installing dependencies:

sudo apt-get install libssl-dev libssh-2-dev

2. Installing Hydra

wget http://freeworld.thc.org/releases/hydra-5.4-src.tar.gz tar xzf hydra-5.4-src.tar.gz rm hydra-5.4-src.tar.gz cd hydra-5.4-src wget http://0xbadc0de.be/libssh/hydra-libssh0.2.patch patch -p1 &lt; hydra-libssh0.2.patch ./configure vi Makefile &lt;- and remove the "-lpq" and "-DLIBPOSTGRES" statements sudo make sudo make install cd .. sudo rm -r hydra-5.4-src

Now you can start Hydra by typing “hydra”!

繼續閱讀