{% extends "base.html" %} {% block title %}Bulk Virus Scan{% endblock %} {% block content %}

Bulk Virus Scan

Scan every file in every FileArea with ClamAV. Infections are quarantined (renamed with .infected suffix).

Requires the clamscan binary in PATH (or set CLAMSCAN_PATH in .env). Scan can take several minutes on large libraries — be patient. Page will refresh when done.

{% if results is not none %}
Scan Results — {{ results|length }} file(s) scanned
{% for r in results %} {% else %} {% endfor %}
AreaFileStatusSignature / Message
{{ r.area }} {{ r.file }} {% if r.infected %} INFECTED {% else %} clean {% endif %} {% if r.sig %}{{ r.sig }}{% endif %} {{ r.msg }}
No files found in any active file area.
{% endif %} {% endblock %}