system
January 19, 2007, 1:44pm
1
I am running FC6
Avast finds a ‘virus’ which according to Fedora Redhat is a false positive.
found in
usr/share/locale/pa/LC_MESSAGES/redhat-artwork.no/PartNo_0#860842075
which if you try to move to chest, kills the virus scanner. I assume this file is important to the linux os.
Do you know anything about this?
thanks
reference is here!
http://www.fedoraforum.org/forum/showthread.php?p=577427
http://www.linuxquestions.org/questions//showthread.php?t=513548
system
January 19, 2007, 4:54pm
2
these are the contents of avast-update in usr/bin
#!/bin/sh
Updates avast! virus database. For use from cron table.
AVASTDIR=$HOME/.avast
VPSFILE=$AVASTDIR/400.vps
URL_UPDATE=“http://files.avast.com/files/latest/400.vps ”
URL_UPDATE_MD5=“http://files.avast.com/files/latest/400vps.md5 ”
if test ! -d $AVASTDIR ; then
echo “You have to run avast! at least once before you can update it.” >&2
exit 1
fi
if test -f $AVASTDIR/lockfile-$USER ; then
echo “avast! is running, can’t update.” >&2
exit 1
fi
if test -f $VPSFILE ; then
md5_current=md5sum $VPSFILE | cut -c1-32
fi
file_md5=$VPSFILE.new.md5
wget -q -O $file_md5 $URL_UPDATE_MD5 && md5_update=cat $file_md5 | cut -c1-32
rm -f $file_md5
if test “x$md5_current” != “x$md5_update” ; then
wget -q -O $VPSFILE.new.$$ $URL_UPDATE && mv -f $VPSFILE.new.$$ $VPSFILE
fi
zilog
January 22, 2007, 10:09am
3
Hallo,
try the latest VPS (you might use our online scanner here http://onlinescan.avast.com/ ), whether the file is still reported as infected. If so, please send this file to virus@avast.com or to me - cimbal@avast.com ).