ClamAV: Difference between revisions

From DWIKI
mNo edit summary
No edit summary
Line 4: Line 4:


*[http://www.clamav.net/ Homepage]
*[http://www.clamav.net/ Homepage]
==A handy script for adding more goodies==
#!/bin/bash
LOCATION=/var/lib/clamav
cd $LOCATION || exit -1
GUNZIP=/bin/gunzip
wget --timestamping http://ftp.tiscali.nl/sanesecurity/phish.ndb.gz && ${GUNZIP} -f phish.ndb.gz
wget --timestamping http://ftp.tiscali.nl/sanesecurity/scam.ndb.gz && ${GUNZIP} -f scam.ndb.gz
wget --timestamping http://download.mirror.msrbl.com/MSRBL-SPAM.ndb
wget --timestamping  http://download.mirror.msrbl.com/MSRBL-Images.hdb
wget http://www.malware.com.br/cgi/submit?action=list_clamav
chown clamav.clamav *
killall -HUP clamd

Revision as of 00:34, 9 May 2007

Clam Antivirus

Virus scanner for mail and files.

A handy script for adding more goodies

#!/bin/bash
LOCATION=/var/lib/clamav
cd $LOCATION || exit -1
GUNZIP=/bin/gunzip


wget --timestamping http://ftp.tiscali.nl/sanesecurity/phish.ndb.gz && ${GUNZIP} -f phish.ndb.gz
wget --timestamping http://ftp.tiscali.nl/sanesecurity/scam.ndb.gz && ${GUNZIP} -f scam.ndb.gz
wget --timestamping http://download.mirror.msrbl.com/MSRBL-SPAM.ndb
wget --timestamping  http://download.mirror.msrbl.com/MSRBL-Images.hdb
wget http://www.malware.com.br/cgi/submit?action=list_clamav

chown clamav.clamav *
killall -HUP clamd