Hey Folks, in this tutorial we will discuss an another ZIP file password cracking tool called ” Zydra”. Zydra is a file password recovery tool and Linux shadow file cracker. It uses the dictionary search or Brute force method for cracking passwords. We have simplified the features of this tool which you can read below.
Let’s take a look 🙂 !!
Now first we have to download this entire tool using git command from gitub. After downloading is done we will go to the directory of this tool and execute the “bash” command to establish the dependency of this tool.
git clone https://github.com/hamedA2/Zydra.git
cd Zydra/
bash script.sh
After completing the installation we can boot this tool with the help of “python” command. No need to execute help command as it will automatically show all its attributes after executing the following command.
python3 Zydra.py
We have to make a password protected zip file in front of you to maintain transparency between us. Do not think so, just use the following command to create a zip file.
Usage 🙂 !! zip –password < your password > < give zip file name > < files that you want compressed >
zip --password shubham secure.zip file1.txt file.txt rep.txt
This gives us two options, dictionary and brute force. First we select the dictatorial attack and as you can see we have our own wordlist to crack the zip file password that we mentioned in the command. After giving the location of zip file and wordlist, it successfully finds a valid password for the zip file.
Usage 🙂 !! python3 Zydra.py -f < zip file > < wordlist >
python3 Zydra.py -f secure.zip -d password.lst
We have created a numeric password protected zip file with the help of the previous command and now we have to crack the password of this zip file. You need to understand to use the below command. In this case we will take help of brute forcing and use the following command to crack the password.
Usage 🙂 !! python3 Zydra.py -f < zip file > -b < digits, letters etc > -m < minimum > -x < maximum >
python3 Zydra.py -f secure.zip -b digits -m 1 -x 3
Zydra can automatically crack the password or hashes of users found in Linux shadow files but it will totally depends on your dictionary.
python3 Zydra.py -f shadow -d wordlist.txt
A keen learner and passionate IT student. He has done Web designing, CCNA, RedHat, Ethical hacking, Network & web penetration testing. Currently, he is completing his graduation and learning about Red teaming, CTF challenges & Blue teaming.
The gau (Get All URLs) tool is a versatile open-source utility that collects URLs from…
Jsluice++ is a Burp Suite extension designed for passive and active scanning of JavaScript traffic…
Hey Folks :) !! In this tutorial, we will describe some of the techniques commonly…
Hey Folks :) !! In this article, we present the "Termux Cheat Sheet for Hackers"…
Amid the rapid advancement of technology, the significance of human involvement in cybersecurity frequently goes…
Hey Folks, we are back today after such a long break, but don't worry we…
This website uses cookies.