Shoutbox

Virus Checker - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Scripting (/forumdisplay.php?fid=39)
+----- Thread: Virus Checker (/showthread.php?tid=66948)

Virus Checker by davidpolitis on 10-04-2006 at 05:33 AM

Sorry if this question has allready been asked but I was wondering if someone could make a script that checks the name of a file that someone is sending you & uses a website to check if it could possibly be a virus or spyware/adware. (Sorry for not being very specific)


RE: Virus Checker by Yil2201 on 10-04-2006 at 06:15 AM

Hi,

Why do u want to have that ? Windows Liv e Safety Scanner is free and you can download it from the settings window of WLM. Go to File Transfers tab and then click on Install. It is downloaded and installed directly by WLM ...

See you

NB : Maybe you wanty something else, don't know ...


RE: Virus Checker by davidpolitis on 10-04-2006 at 07:08 AM

1. I can't Install Windows Live Safety Scanner for some reason &

2. Doesn't Windows Live Safety Scanner scan the files after downloaded?


RE: Virus Checker by ins4ne on 10-04-2006 at 07:44 AM

it scans them before download and if they are infected it doesnt download accept them


RE: Virus Checker by davidpolitis on 10-04-2006 at 10:08 AM

Oh, sorry for this thread. Can someone please close it!


RE: Virus Checker by Mike on 10-04-2006 at 12:31 PM

quote:
Originally posted by ins4ne
it scans them before download and if they are infected it doesnt download accept them
Ummm ... no...
How can it scan the file if the file hasn't been received?
RE: Virus Checker by Menthix on 10-04-2006 at 12:51 PM

Files are scanned after they are downloaded, but before they are executed. Just downloading a file won't get you infected anyway, you have to execute the code somehow.


quote:
Originally posted by davidpolitis
I was wondering if someone could make a script that checks the name of a file that someone is sending you & uses a website to check if it could possibly be a virus or spyware/adware.
Checking files on filename is a very bad way to check for badware, anybody could simply change a filename. And even if it would be a good method, maintaining a site and keeping it up to date with all the latest threats just takes too much work for normal people.

I suggest to just a normal virus scanner, which not only scans files send on Messenger, but all the files on your PC.
RE: Virus Checker by Spunky on 10-04-2006 at 05:14 PM

quote:
Originally posted by MenthiX
Checking files on filename is a very bad way to check for badware, anybody could simply change a filename

I use Bitzi to check the "bitprint" of a file, gets around the file name changing thing :p If we could make a script that reads MD5 strings, that'd be good :D
RE: RE: Virus Checker by rav0 on 10-05-2006 at 02:32 AM

quote:
Originally posted by MenthiX
Files are scanned after they are downloaded, but before they are executed. Just downloading a file won't get you infected anyway, you have to execute the code somehow.
By design, but it is possible for a vunerability in the scanner to be exploited to excute code in the file when it is scanned. Vunerabilities like this exist not only in virus scanners, they can be in filesystem drivers, productivity applications and other programs that even look at a file.

quote:
Originally posted by MenthiX
Checking files on filename is a very bad way to check for badware
Indeed it is, but if it prevents only some badware, that's less chance of you running that badware. I wouldn't want this script though.
quote:
Originally posted by SpunkyLoveMuff
I use Bitzi to check the "bitprint" of a file, gets around the file name changing thing :p If we could make a script that reads MD5 strings, that'd be good :D
Remember that MD5 (and other) hashes are calculated after reading the whole file, not a string read from the file ;).