Skip to content

henriksb/ZipCrack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 

Repository files navigation

ZipCrack

ZipCrack is a command-line tool to crack password protected Zip files without using separate programs like 7zip or Winrar to extract, which makes it a great deal faster. ZipCracker supports brute force and dictionary attack.

Dictionary example:
        ZipCrack.exe --zip ExampleFile.zip --dict passwords.txt --attack dictionary
Brute force example:
        ZipCrack.exe --zip ExampleFile.zip --attack bruteforce --min-length 1 --max-length 3 --lower --numbers

Bruteforce options (can be combined):
        --min-length [int]
        --max-length [int]
        --lower
        --upper
        --numbers
        --special

These can be combined for brute force.

Download latest version

Version 2 was tested and estimated to be about 88% faster than version 1.

Build

go mod init ZipCrack
go mod tidy
go build ZipCrack.go

Install -- Linux

cp ZipCrack /usr/bin/local

TODO

  • Add --threads parameter to let user allocate as many threads as they want.
  • Fix incorrect "Total amount". This is wrong because of threading.