Open Source Tool

๐Ÿ”’ Malware Zipper

Safely package suspected malware samples with password protection. Uses industry-standard "infected" password with AES-256 encryption via 7z.

โš ๏ธ
Handle with care. This tool is for malware analysts and security professionals. Always work in isolated VMs. Never extract archives on production systems. The standard password infected should be communicated to recipients out-of-band.
๐Ÿ”

Password Protection

Auto-applies industry-standard "infected" password to all compressed samples.

๐Ÿ›ก๏ธ

AES-256 Encryption

Uses 7z with AES-256 when available for maximum cryptographic security.

๐Ÿ–ฅ๏ธ

Cross-Platform

Works on Windows, Linux, and macOS with automatic tool detection.

โš™๏ธ

5 Fallback Methods

Tries compression methods in security preference order โ€” always finds one that works.

๐Ÿงน

Auto Cleanup

Automatically removes temporary files after packaging completes.

๐Ÿ“ฆ

Batch Processing

Package multiple malware samples in a single command.

1

Input Files

Accepts file paths as CLI arguments

2

Tool Detection

Checks for available compression tools

3

Compression

Attempts methods in order of preference

4

Encryption

Applies encoding if needed for weak methods

5

Output

Generates <filename>_suspicious.zip

1
7z with AES-256

Most secure โ€” auto-downloads on Windows if needed

2
Unix/Linux zip

Standard encryption via system zip utility

3
pyminizip

Python library-based compression with encryption

4
PowerShell Compress-Archive

Windows PowerShell (with certutil encoding fallback)

5
Python zipfile module

Built-in fallback (with certutil encoding on Windows)

Python Script

bash
# Single file
python malware_zipper.py sample.exe

# Multiple files
python malware_zipper.py sample1.exe sample2.dll sample3.bat

# Full path
python malware_zipper.py "C:\Samples\malware.exe"

Windows Executable

cmd
malware_zipper.exe sample.exe
malware_zipper.exe sample1.exe sample2.dll

# Drag and drop files onto the .exe also works!

Option 1 โ€” Windows Executable (no Python needed)

Download malware-zipper.exe

Option 2 โ€” Python Script

bash
git clone https://github.com/Prof-GP/Other-Useful-Tools.git
cd Other-Useful-Tools
python malware_zipper.py sample.exe

# Optional: enhanced compression
pip install pyminizip

Want to contribute?

Submit issues, fork the repo, or open a pull request.