This is a simple implementation of REST API for ClamAV virus scanner. You can use it to scan files uploaded by users, before they are saved or put into final destination, or to scan files on demand.
This product is a modification for a specific use case which deviate from the original author benzino77 implementation. https://github.com/benzino77/clamav-rest-api
Please check the following repository for complete implementation
- dockerized clamavd - https://github.com/levindecaro/clamav-docker
- clamav signature mirror - https://github.com/levindecaro/docker-clamav-mirror
First of all you have to have running ClamAV instance configured to accept TCP connections from clamav-rest-api
instances. For more details I will guide you to CalmAV documentation (here and here) but it's enough to say that you need TCPSocket 3310
and eventually TCPAddr
in your clamd.conf
file. The easiest way is to use sidecar image with ClamAV already configured from here https://github.com/levindecaro/clamav-docker or docker.io/levindecaro/clamav:v0.7
Note: You have to give couple of minutes to start/crashloopback because it needs to download new signatures from ClamAV servers (update its viruses database).
Recommended way of using clamav-rest-api
is to start it as docker container or on k8s cluster (see Configuration below):
In examples directory there are kubernetes YAML files to create configMap
, deployments
and services
. Just run kubectl
command to create them in proper order:
Before the deployment, you need prepare the certificates for TLS and the password authentication
SSL Certificate
kind: Secret
apiVersion: v1
metadata:
name: cra-cert
namespace: cra
data:
cert.pem: ### base64encoded certificate ###
key.pem: ### base64encoded private key ###
type: Opaque
Credential
kind: Secret
apiVersion: v1
metadata:
name: cra-secret
namespace: cra
data:
APP_USER: ### base64encoded-usernme ###
APP_USER_PASSWORD: ### base64encoded-password ###
type: Opaque
Deployment
kubectl apply -f cra-cert.yaml
kubectl apply -f cra-secret.yaml
kubectl apply -f deployment.yaml
kubectl apply -f service.yaml
clamav-rest-api
service is published on cluster network port 19443.
Compare agaist current signature set
#> dig +noall +answer current.cvd.clamav.net TXT
current.cvd.clamav.net. 1800 IN TXT "0.103.7:62:26665:1663747226:1:90:49192:333"
Format: - 0.103.7: engine latest version - 62: Main cvd version - 26665: daily database - :333 bytecode database
Wed Sep 21 07:23:39 2022 -> daily.cld database is up-to-date (version: 26664, sigs: 2003594, f-level: 90, builder: raynman)
Wed Sep 21 07:23:39 2022 -> *fc_update_database: daily.cld already up-to-date.
Wed Sep 21 07:23:39 2022 -> *Current working dir is /usr/local/share/clamav/
Wed Sep 21 07:23:39 2022 -> *check_for_new_database_version: Local copy of main found: main.cvd.
Wed Sep 21 07:23:39 2022 -> *query_remote_database_version: main.cvd version from DNS: 62
Wed Sep 21 07:23:39 2022 -> main.cvd database is up-to-date (version: 62, sigs: 6647427, f-level: 90, builder: sigmgr)
Wed Sep 21 07:23:39 2022 -> *fc_update_database: main.cvd already up-to-date.
Wed Sep 21 07:23:39 2022 -> *Current working dir is /usr/local/share/clamav/
Wed Sep 21 07:23:39 2022 -> *check_for_new_database_version: Local copy of bytecode found: bytecode.cvd.
Wed Sep 21 07:23:39 2022 -> *query_remote_database_version: bytecode.cvd version from DNS: 333
Wed Sep 21 07:23:39 2022 -> bytecode.cvd database is up-to-date (version: 333, sigs: 92, f-level: 63, builder: awillia2)
Wed Sep 21 07:23:39 2022 -> *fc_update_database: bytecode.cvd already up-to-date.
You can also start clamav-rest-api
by cloning the repo and run commands listed below:
npm install
npm install -D # if you want to run tests or examples
# Configuration described below - needed before start app
npm start
clamav-rest-api
needs some information to run properly. For example it needs to know where to find ClamAV. This kind of information can be provided by .env
file or by setting environemnt variables. Example .env
file can be find here. What you need to do is to copy .env.example
file to .env
and edit it to provide configuration parameters which meet your needs.
Here is a short description of those parameters:
APP_USER
- username who used to authenticate toclamav-rest-api
APP_USER_PASSWORD
- password forAPP_USER
APP_PORT
- port number on whichclamav-rest-api
will listen to requestsAPP_FORM_KEY
- form key (element name) used when uploading files to scan (see examples directory).clamav-rest-api
will only accept files uploaded with this form key.APP_MORGAN_LOG_FORMAT
- log format used byclamav-rest-api
to display information about requests. More infor can be found hereAPP_MAX_FILE_SIZE
- max size (in bytes) of single file which will be accepted byclamav-rest-api
. You have to also take care ofMaxScanSize
,MaxFileSize
, etc. in yourclamd.conf
file.APP_MAX_FILES_NUMBER
- maximum number of files uploaded to scanCLAMD_IP
- ClamAV IP adressCLAMD_PORT
- ClamAV listen portCLAMD_TIMEOUT
- ClamAV timeout connection in milisecondsSRV_TIMEOUT
-clamav-reset-api
server timeout in milisecondsUNIX_SOCKET_MODE
- use unix socket instead of TCPCERT_PATH
- SSL Certificate file pathKEY_PATH
- SSL Certificate key path
As stated before you can set all those parameters by setting environment variables:
Linux/MacOSX
source ENV
npm start
There are only two API endpoints:
POST /api/v1/scan
- to scan files (see examples)
GET /api/v1/version
- to get ClamAV version
Oooops: Wget does not currently support "multipart/form-data" for transmitting POST data
❯ curl -s -k -XPOST https://localhost:19443/api/v1/scan -F FILES=@src/tests/1Mfile01.rnd -F FILES=@src/tests/eicar_com.zip | jq
{
"success": true,
"data": {
"result": [
{
"name": "1Mfile01.rnd",
"is_infected": false,
"viruses": []
},
{
"name": "eicar_com.zip",
"is_infected": true,
"viruses": [
"Win.Test.EICAR_HDB-1"
]
}
]
}
}
❯ https --verify no --form POST https://localhost:19443/api/v1/scan FILES@src/tests/1Mfile01.rnd FILES@src/tests/eicar_com.zip
HTTP/1.1 200 OK
Access-Control-Allow-Origin: *
Connection: keep-alive
Content-Length: 172
Content-Type: application/json; charset=utf-8
Date: Sun, 07 Jun 2020 10:11:34 GMT
ETag: W/"ac-dmIyPllIezz2lPUbemX0zYljm9w"
X-Powered-By: Express
{
"data": {
"result": [
{
"is_infected": false,
"name": "1Mfile01.rnd",
"viruses": []
},
{
"is_infected": true,
"name": "eicar_com.zip",
"viruses": [
"Win.Test.EICAR_HDB-1"
]
}
]
},
"success": true
}
Simple examples how to call clamav-rest-api
(from client/browser side) using form action and axios library can be found in examples/html directory.
Server side examples (Node.js) using axios, fetch and request library can be found in examples/nodejs directory.
There is also simple Python example using requests
library.