ClamAV Private Database Mirror Updater Tool

1.2.0 · active · verified Wed Apr 15

cvdupdate is a command-line tool designed to facilitate the creation and maintenance of private mirrors for ClamAV antivirus databases. It efficiently downloads the latest ClamAV signature databases (CVDs) and associated patch files (CDIFFs), replacing the older `clamdownloader.pl` script. The library is actively maintained, with its current version being 1.2.0, and receives regular updates to support new ClamAV features and address bug fixes.

Warnings

Install

Imports

Quickstart

This quickstart demonstrates how to install `cvdupdate` and use its primary command to download ClamAV database files. It also includes optional commands to serve the databases locally for testing purposes and to customize the database storage location.

# Install cvdupdate (if not already installed)
pip install cvdupdate

# Run the update command to download ClamAV databases
cvd update

# (Optional) Serve the downloaded databases for testing (not production)
cvd serve

# (Optional) Configure database directory
cvd config set --dbdir /path/to/your/mirror

view raw JSON →