Bulk Malware Downloads

Download daily batches of malware samples for research and analysis purposes. Each batch contains samples shared within the MalwareBazaar community during a specific day.

Important Security Notice

All malware samples are compressed with password protection. Use password infected to extract the files. Always handle these files in a secure environment to prevent accidental execution or infection.

Available Daily Batches

How to Use the Downloaded Files

Each batch file contains malware samples from a specific day, compressed in a password-protected archive. Follow these steps to safely analyze the samples:

  1. Extract the downloaded .tar.gz file using suitable extraction software.
  2. When prompted for a password, use infected (without quotes).
  3. Each malware sample will be in a separate ZIP file, also password-protected with infected.
  4. Always analyze malware samples in a secure, isolated environment such as a virtual machine.
  5. Some extraction tools may have issues with the AES encryption - if you encounter errors, try using pyzipper in Python.

# Example Python code for extracting samples:

import pyzipper

with pyzipper.AESZipFile('sample.zip', 'r') as zip_file:

zip_file.pwd = b'infected'

zip_file.extractall('output_folder')