0

I have a .zip file and I want to crack its password using john.

first I use zip2john:

enter image description here

then I use john for cracking the password:

enter image description here

but after 10 seconds, john stop cracking and exit.

what's wrong?

schroeder
  • 123,438
  • 55
  • 284
  • 319
Mehran
  • 1
  • 1

1 Answers1

0

This behavior is standard! Either the corresponding password wasn’t found in your password list or the the hash has been cracked before.

You can check to see if it’s already been cracked by doing:

john —show <hash file>

E.g.

john —show ai.txt

A similar question was asked here: John the Ripper - Can't get cracked MD5 hash to show

schroeder
  • 123,438
  • 55
  • 284
  • 319
Elizabeth
  • 1
  • 2