zip password protected
by - Thursday, January 1, 1970 at 12:00 AM
Hye bros, do you know a specific tool to crack password protected zip files?
Reply
Just get the damn password.

#databreach
#RIU
Reply
John The Ripper.
Reply
Thank you so much
Reply
thanks bro mybe i need it fprever
Reply
(April 13, 2022, 02:19 PM)Jawed Wrote: John The Ripper.


Hello. Where can I learn how to get the password from a zip / rar archive using Ripper?
Reply
(May 5, 2022, 03:24 PM)Posh_Pete Wrote:
(April 13, 2022, 02:19 PM)Jawed Wrote: John The Ripper.


Hello. Where can I learn how to get the password from a zip / rar archive using Ripper?


To crack a zip file, we first need to extract the password hash then crack it with John the Ripper. To extract zip file password hashes, we will use a tool called
zip2john

. If we were working with a rare file, we would use the tool
rar2john

to extract the hashes.
Execute the command below to extract the hashes on your zipped file and store them in a file named
zip.hashes

.
$ zip2john protected.zip > zip.hashes
After successfully extracting the password hash, we will crack it with John the Ripper using a wordlist. Execute the command below:

$ john --wordlist=/usr/share/wordlists/crypton.txt zip.hashes
Reply
(May 30, 2022, 08:19 AM)massin Wrote:
(May 5, 2022, 03:24 PM)Posh_Pete Wrote:
(April 13, 2022, 02:19 PM)Jawed Wrote: John The Ripper.


Hello. Where can I learn how to get the password from a zip / rar archive using Ripper?


To crack a zip file, we first need to extract the password hash then crack it with John the Ripper. To extract zip file password hashes, we will use a tool called
zip2john

. If we were working with a rare file, we would use the tool
rar2john

to extract the hashes.
Execute the command below to extract the hashes on your zipped file and store them in a file named
zip.hashes

.
$ zip2john protected.zip > zip.hashes
After successfully extracting the password hash, we will crack it with John the Ripper using a wordlist. Execute the command below:

$ john --wordlist=/usr/share/wordlists/crypton.txt zip.hashes


Thanks for the answer. I will definitely try
Reply
unreal, thanks
Reply
Thanks for sharing
Reply


 Users viewing this thread: zip password protected: No users currently viewing.