ZIPLocker is a Python program designed to create or update encrypted ZIP files securely. It offers a simple command-line interface to lock ZIP files with strong encryption, ensuring the confidentiality of your archived data. This tool utilizes AES encryption with strong password requirements to enhance the security of your ZIP files.
Strong Encryption: ZIPLocker employs AES encryption to secure your ZIP files, providing robust protection against unauthorized access. Password Strength Check: Before encrypting the ZIP file, ZIPLocker verifies the password strength to ensure it meets minimum security requirements. Automatic Password Generation: For convenience, ZIPLocker generates a strong password if the user-provided password is deemed weak.
python ZIPLocker.py --zipfile --addfile ...
--zipfile, -z: Specify the ZIP file to create or update.
--addfile, -a: Specify one or more files to add to the ZIP file(s)
Python 3.x
PyZipper library (pip install pyzipper)
Colorama library (pip install colorama)
Clone the repository.
Install dependencies using pip install -r requirements.txt.
Run the script using Python:
python ZIPLocker.py --zipfile <ZIP_FILE> --addfile ....
python ZIPLocker.py --zipfile archive.zip --addfile document.txt image.jpg
Ensure that strong passwords are used to enhance the security of your encrypted ZIP files. Forgetting the password will result in permanent loss of access to the encrypted data.