Cracking Zip File Passwords

Currently reading:
 Cracking Zip File Passwords

0O1

Member
LV
1
Joined
Nov 29, 2023
Threads
14
Likes
17
Awards
4
Credits
922©
Cash
0$
So for cracking zip file password we need first of all to download john the ripper :

$ sudo apt install john

or from the github : git clone https://github.com/openwall/john


To convert the hash i use zip2john utility , how to download it ?


$ snap install john-the-ripper


Then we have for example ''file.zip'' we need the hash of it :


$ john-the-ripper.zip2john (zip path) > (hash.txt)


Now we have the hash , for cracking it use :

$ john --wordlist=(wordlist path) (the hash)

And that's it
For wordlist you cand use rockyou.txt :


Or a custom wordlist , Good Luck !
 
  • Like
Reactions: dino1970

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Tips
Top Bottom