Nowadays password cracking algorithms are becoming smart and storanger.If you do not use a strong password, your password can easily be cracked or guessed.strong password means a password which contains long character, capital letters, small letters, symbols and numerics.
How to install hydra tool in termux
Hydra is used to perform bruteforce attack to crack password.It is a parallelized login cracker or password cracker tool.It supports numerous protocols to attack.This tool is fast and flexible so adding new modules is easy.
Hydra comes preinstalled with Kali Linux.
Before installing hydra in termux at first we have to install Ubuntu on our termux.So open your termux application and enter the following commands 👇
$ apt-get update -y
$ apt-get upgrade -y
$ pkg install proot-distro
$ proot-distro install ubuntu
$ proot-distro login ubuntu
$ pkg update
$ pkg install hydra -y
After then you will be able to use the hydra tool in your termux.To see it's usage you can use the command
$ hydra -h
0 Comments