ClamAV
From DWIKI
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