How to Crack a Password-Protected Archive.



Fixxx

Elite
Ultimate
Joined
31.10.19
Messages
119
Reaction score
56
Points
28
1713574200565.png
*suitable for simple passwords
Method 1: Using the online services like "Unzip-Online".​
(not recommended, use only if the next methods don't suit you)​
1713575791897.png
1) Open your browser, go to the Unzip-Online website, and click on the "Uncompress files" button.
2) Click on "Browse..." and upload the password-protected archive file from which you need to remove restrictions.
3) After uploading the archive click on "Uncompress file" and after some time depending on the speed of your internet connection, a link will appear to download the unlocked archive.
Method 2: Installing the "Passper for ZIP" application.​
(recommended)​

1713574462637.png
To take advantage of all the features of "Passper for Zip" follow the instructions below:

1) Download and install "Passper for Zip" from the official developer's website following the installation wizard's recommendations.
2) Add the encrypted ZIP file from your computer by clicking on the "+" icon in the application's main menu.
3) Now you should choose one of the four decryption algorithms including:
- "Combination Attack" which allows you to guess the password phrase by rearranging various combinations of specific letters and symbols that must be present in the password.
- "Mask Attack" is used if the user remembers fragments or special characters from the keyword, enabling a quick unlock of the archive.
- "Dictionary Attack" selects keys based on user or common dictionaries.
- "Brute Force Attack" will try all possible letter and symbol combinations, but this method can take a very long time depending on the complexity of the passphrase.

4) At this stage, click "Next" to start the decryption process after which the working password will be displayed which needs to be copied and pasted when opening the locked archive.

Method 3: Using the "Nullsoft Scriptable Install System" (NSIS) utility.​

1713574824794.png
1) Download "NSIS" from the developer's website and then install this software on your computer.
2) Select "Installer based on ZIP file" from the start menu.
3) In the opened "Zip2Exe 0.37" interface, click "Open" and select your protected file.
4) Set the folder for saving the decoded object. Click "Browse" and specify the path to the selected directory.
5) Wait for the program to generate the password and save the unlocked archive at the chosen path.

Conclusion

There are many ways to unlock password-protected archives but using the online service "Unzip-Online" is not very preferable in terms of information security and there is also a limitation of 200MB on the uploaded archive size... Meanwhile the installation of the "NSIS" platform involves several steps which take some extra time. So, I recommend installing the "Passper for ZIP" program.
 
Last edited:

Fixxx

Elite
Ultimate
Joined
31.10.19
Messages
119
Reaction score
56
Points
28
is it same on linux?
On Linux you can use “fcrackzip” (command-line tool). Some command examples:

1. Brute-force a password with a length of 4 to 8 characters, and contains only alphanumeric characters (order matters):
# fcrackzip --brute-force --length 4-8 --charset aA1 archive

2. Brute-force a password in verbose mode with a length of 3 characters that only contains lowercase characters, "$" and "%":
# fcrackzip -v --brute-force --length 3 --charset a:$% archive

3. Brute-force a password that contains only lowercase and special characters:
# fcrackzip --brute-force --length 4 --charset a! archive

4. Brute-force a password containing only digits, starting from the password "12345":
# fcrackzip --brute-force --length 5 --charset 1 --init-password 12345 archive

5. Crack a password using a wordlist:
# fcrackzip --use-unzip --dictionary --init-password wordlist archive

6. Benchmark cracking performance:
# fcrackzip --benchmark
 
Top Bottom