How to Crack SSH, FTP, or Telnet server using Hydra - Ubuntu



Hydra is a tool that makes cracking protocols such as ssh, ftp and telnet relatively easy. In my example, I will be cracking SSH using Hyrda 5.9.1 on Ubuntu 10.10 64 bit (***Update for Ubuntu 12.04 - Replace all references of Hydre 5.9.1 with Hyrda 7.3, which can be downloaded here). Although this example uses Ubuntu, these commands should work on any Debian based system such as Debian and Linux Mint. Hydra uses password lists to brute force the SSH server. If you need help finding a good password list, check here:
http://www.google.com/search?aq=f&sourceid=chrome&ie=UTF-8&q=password+list
Here is what my password list looks like (this is a short list that I made solely for this tutorial):
To begin, we will need to install a few packages:
- sudo apt-get install libssh-dev nmap build-essential linux-headers-$(uname -r) libgtk2.0-dev libssl-dev cmake
I put nmap in there just to do fingerprinting before we attack. Run the following for the nmap scan:
- nmap -A -T4 -F 192.168.1.95
Use the output to confirm that the SSH server is active. You also can see what SSH server it is, what protocol, what port, and what operating system it is running.
Next, we will download and build Hydra:
wget http://www.thc.org/releases/hydra-5.9.1-src.tar.gz
tar -xvzf hydra-5.9.1-src.tar.gz
cd hydra-5.9.1-src
./configure
make
sudo make install
If Hydra installed successfully, press Alt + F2 to bring up the Run menu. Type “xhydra”, the gui for Hyrda, and press enter.
On the Target tab, enter the IP address or hostname of the SSH server, the port, and the Protocol.
On the Passwords tab, select the username (yes, you must know the username, unless you want to use a username list), check the “Password List” button, then choose the path to your password list.
On the Tuning tab, you can select the number of tasks and the timeout time. I left mine at default, but you may need to edit these if you have trouble with the attack.
On the Start tab, click on Start and watch the output.
Once it finds a password match (if it finds one), it will be highlighted in black.
As you can see, it is quite easy to perform a brute force attack on an SSH server using Hydra. Hydra works with much more than SSH though. You can use Hydra to perform a brute force attack on FTP, Telnet, and POP3 servers, just to name a few. Remember, don't run these attacks on anything other than your own servers.
- Add new comment
- 4 comments
Again, you should only do
Again, you should only do this attack on your own servers for testing purposes (to make sure your network is secure). Any server that is in production should have proper security measures in place to prevent an attack such as this. For instance: do not enable root access, setup fail2ban, and have strong passwords.
On the other hand, it’s amazing how many people have unpatched ftp servers running on unpatched and outdated operating systems (server 2000 and server 2003 for example). So for all of you guys who manage systems like these, you should really update your systems and change your password routinely.
nice info, thatś working on
nice info, thatś working on my notebook... thanks
may I ask hydra app free
may I ask hydra app free download link? I so need it. I am from Indonesia. download link please send to my email. thank you sir
mxecia
mxecia
Post new comment