Disclaimer: The following steps are for educational and CTF purposes completely. If someone uses the technique for a malicious purpose, I will not be responsible for that.
First, you need to make a hash of the password-protected zip file and save that hash value in a text file using the zip2john kali Linux tool.
Use the following commands in the Linux shell:
zip2john pass_protected.zip > hash.txt
john hash.txt --wordlist=/usr/share/wordlists/rockyou.txt
john --show hash.txt
Comments
Post a Comment