Questions tagged [clam]

ClamAV is open source antivirus software for email, command line, web and database

ClamAV is open source antivirus software for email, command line, web and database

47 questions
0
votes
1 answer

How do I disable Clamav from downloading virus database from Internet

I have clamav software installed in my Server (Centos 7) which is under a corporate proxy. I want to stop clamav from trying to download virus databases everytime I try to run freshclam. I'm updating the .cvd files manually every month or so. So how…
mddiljith
  • 23
  • 8
0
votes
1 answer

How to run clamd as a service on Centos 8

I have downloaded clamd (and clamav) and I'd like to run clamd with on-access scanning as a service with systemctl. Is this even possible on Centos 8? If not, is there a anticirus alternative which will allow me to scan files on access? Failed to…
lajmode
  • 133
  • 1
  • 1
  • 8
0
votes
1 answer

Clamav logical signature generation

I am trying to generate clamav signatures for a malware dataset that I have. Initially I have recognized some strings which are prominent in a class of malware, hence, those are considered and a ldb signature is generated using the below…
user1683894
  • 405
  • 1
  • 6
  • 20
0
votes
1 answer

Can Clamd be relied upon to unpack RFC-822 format .eml files? It seems to do it

I'm using ClamAV, communicating via a Unix socket a la https://github.com/Elycin/php-clamav/. All working so far. My app picks up files from a folder. Each file contains RFC822-compliant content (sometimes you see these with extension .eml). I was…
tuck1s
  • 1,002
  • 9
  • 28
0
votes
1 answer

PHP. Permissions of upload temp file under /tmp . How to configure

In my PHP class i upload files and then scan them with antivirus. Uploaded files are stored in /tmp with names like /tmp/phpRANDOM (allas usually) But when i pass this path to clamav server it returns "Access denied". For other files (not in /tmp)…
Roman Gelembjuk
  • 1,797
  • 2
  • 25
  • 50
0
votes
3 answers

Installing a NuGet package from source?

I want to use nClam (https://github.com/tekmaven/nClam), a library for antivirus scanning with .NET core 1.1. The library currently requires .NET core 2.0 but it looks like I can work around this with a few light modifications to the nclam.csproj…
0
votes
1 answer

Reading CSV files from RAM

Situation: I have a CVD (ClamAV Virus Database) file loaded into RAM using mmap. The format of every line in the CVD file is same as the one of CSV files (':' delimited). Below is a snippet of the code: def mapping(): with open("main.cvd", 'rt')…
Timothy Wong
  • 689
  • 3
  • 9
  • 28
0
votes
1 answer

Setup Nagios check_clamd

I'm getting a (No output returned from plugin) from a host and cannot understand why: Service on monitor server: # Check Clamd availability define service { hostgroup_name clamd-servers service_description ClamAV…
Fabrizio Mazzoni
  • 1,831
  • 2
  • 24
  • 46
0
votes
0 answers

ClamWin Antivirus update on Windows Azure Virtual Machine

I am trying to update ClamWin on my Windows Azure Virtual Machine. Windows has given popup like Your clamwin has update and when i click on update it will give me error like your update is failed check on clamwin scanlog file. When i checked into…
Maitri
  • 49
  • 6
0
votes
1 answer

How to update ClamAV in windows

I am using ClamAv in my site to scan the CVs. I have ClamAv of version 0.99.1 and i want to update to 0.99.2. I tried to download the latest version of clamAV from https://www.clamav.net/downloads, But i am not sure about,If i put this code into my…
Maitri
  • 49
  • 6
0
votes
0 answers

How to connect to ClamAV daemon?

I'm trying to connect to ClamAV daemon clamd on localhost 3310 port via telnet comand in terminal:telnet 127.0.0.1 3310 Trying 127.0.0.1... Connected to 127.0.0.1. Escape character is '^]'. nIDSESSION [pressed ENTER button on keyboard] nPING …
elgolondrino
  • 665
  • 9
  • 33
0
votes
1 answer

ClamAV copy checked non infected files

I´m currently writing a script that checks USB Sticks for malicious files that runs on a Raspberry Pi. For AV Checking I´m using clamscan like this: clamscan --infected --allmatch --detect-pua --block-macros --recursive --block-encrypted…
architekt
  • 147
  • 11
-1
votes
0 answers

Does ClamAV stop you from using RealVNC?

I just got a Raspberry pi 4 and was using RealVNC on it to control my pi from my laptop (windows 10), everything was working until i got ClamAV. I have tried doing some research but have not found anything related to my problem. Usually when I try…
wvzack
  • 1
  • 3
-1
votes
1 answer

ClamAV clamscan not scanning for infected files present inside an archived file

I am testing ClamAV to detect viruses on machine. I am running clamscan -r -i "Path to folder containing archive that has infected file" It fails to detect the infected file present inside the archive file. If I have the infected file outside of the…
Meet Gujrathi
  • 65
  • 1
  • 6
-1
votes
1 answer

clamav docker build for non root user issue

From node:16.10-stretch WORKDIR /app COPY . . RUN apt-get update && npm install && apt-get install clamav-daemon -y && \ freshclam && echo "TCPSocket 3310" >> /etc/clamav/clamd.conf && \ echo "TCPAddr 127.0.0.1" >> /etc/clamav/clamd.js && \ …