Questions tagged [clamav]
61 questions
1
vote
0 answers
ClamAv not detecting eicar signature in a zip file
I have a zip file (considerably large for ClamAV) that has EICAR file in it and for whatever reason, clam av is unable to detect it. When I unzip the file and pass the folder path, it is able to detect the EICAR signature. It is also able to detect…

Mani Kanta Ankam
- 33
- 5
1
vote
1 answer
Can I send multiple commands to clamd socket (ClamAV daemon) without closing and re-opening the connection?
$socket = socket_create(AF_UNIX, SOCK_STREAM, 0);
socket_connect($socket, CLAMD_SOCKET);
socket_send($socket, 'PING', 4, 0);
socket_recv($socket, $output, 4, 0);
// check to see if $output === PONG (which it is)
$scan =…

cantsay
- 1,967
- 3
- 21
- 34
1
vote
1 answer
Docker clamav AWS lambda layer build on mac M1
Attempting to run the docker file from here
https://dev.to/sutt0n/using-a-lambda-container-to-scan-files-with-clamav-via-serverless-2a5g
I get an error
=> ERROR [10/52] RUN yumdownloader -x *i686 --archlist=x86_64 clamav
#13 4.564 64 packages…

Interlated
- 5,108
- 6
- 48
- 79
1
vote
1 answer
Clamdscan errors when scanning a file
So I have been trying to use clamav to scan files but the clamdscan has not worked for me yet.
my setup is as follows:
brew install clamav
then I renamed the clamd.conf.sample and freshclam.conf.sample to clamd.conf and freshclam.conf…

Haumer
- 460
- 4
- 15
1
vote
2 answers
How to use ClamAV Antivirus in AWS EC2 for scanning S3 Bucket object when any file uploaded to s3 bucket?
I need to run ClamAV antivirus in EC2 instance that can help me to scan a virus for s3 bucket object when any object being uploaded to s3. Is their any blog or way that i can use?

Amin Ali
- 47
- 1
- 8
1
vote
2 answers
is there any solution to download a file from aws s3 bucket with aws lambda but file size should be 1gb or more?
I want to scan file by uising ClamAV from s3 bucket with AWS lambda but size of the local storage in aws lambda that is /tmp 512MB . Im my case i want to download file from s3 bucket in AWS lambda but file size must be grater then 1 GB. Please help…

Amin Ali
- 47
- 1
- 8
1
vote
1 answer
Trying to specify binary path for clamAV
I am trying to use clamscan on my windows 10 pro machine in NodeJS.
Clamscan is installed to
C:\Program Files\ClamAV
I have this code..
const NodeClam = require('clamscan');
const ClamScan = new NodeClam().init({
scan_recursively:…

LukePerrin
- 235
- 5
- 17
1
vote
1 answer
Don't know how to get started in nodejs with dockerized clamAV
I can't get started with dockerized clamav app
I know it is not a bug, but overviewed docs, googled dozen times and still get the same output.
I built a nodejs app with a muter-based upload. There is a function that takes uploded file path and…

Tomasz Steć
- 11
- 3
1
vote
0 answers
Laravel ClamAV scanner client failed with error "Socket operation failed: Connection refused
I have created a validation system to check if the uploaded files are secured and virus-free, I'm using ClamAV for that purpose.
At first I was testing locally on my MACOS using XAMPP but I kept getting the below error
Sunspikes \ ClamavValidator \…

David Buik
- 522
- 1
- 8
- 31
1
vote
0 answers
How to setup calm antivirus in k8s environment and interact from a django app pod?
I am using django-clamd (https://github.com/vstoykov/django-clamd) inside my django app. The scanning works fine on my local system while uploading files and virus containing files are detected.
I want to achieve the same for my app pod in…

devcloud
- 391
- 5
- 18
1
vote
0 answers
local server takes time to update clamav db
I'm serving cvd files from a local server, when I run freshclam on my server it takes some runes until the daily.cvd is updated even though the remote version was updated a while ago.
The clamav version I'm using is 0.102.4-r1
freshclam.conf I'm…

Gal Cohen
- 11
- 1
1
vote
0 answers
Installing LibIconv using Homebrew in Ubuntu 20.04.1
I’m running Ubuntu 20.04.1 on Hyper-V in Windows 10, and I need to install LibIconv (in order to install ClamAV through a Homebrew package).
When I run brew install clamav or brew install libiconv I get this:
libiconv: is not needed on Linux, where…

SYB
- 11
- 1
1
vote
1 answer
Azure Container Instance being recreated
I have created a clamav container instance (mkodockx/docker-clamav:alpine) within Azure but every few days it tends to be recreated by itself pulling the image over and over again, as you can see in the screengrab.
Is something wrong? Why would it…

Andrew Duffy
- 795
- 2
- 17
- 37
1
vote
1 answer
freshclam: symbol lookup error: freshclam: undefined symbol: print_version, version FRESHCLAM_PRIVATE
I was following this guide to install clamav from source on Ubuntu 20.04 LTS and I stopped after getting the following error: freshclam: symbol lookup error: freshclam: undefined symbol: print_version, version FRESHCLAM_PRIVATE
.
Here are the…

Thomas
- 422
- 1
- 4
- 12
1
vote
0 answers
Understanding clamav signature
I am new to to Clamav. I have decoded a clamav signature using clamav-unofficial-sigs
and it gives this as decoded signature .
signature decodes to:
???*CallByName?VbMethod??*RndR?
I was getting not output when trying to decode using sigtool.
The…

shlm Andizer
- 11
- 1