Twelve Years of Service
Posts: 969
Threads: 142
Points: 2.5NSP
How do anti virus function? 09-01-2011, 06:45 PM
#1
Actually I wanted to make a simple anti virus software, but I don't quite know how to differentiate between a virus and a normal file. Could someone please help me understand how to make my code differentiate between a virus and a safe file? I'd be making this in java or c++ if someone helps me at this point of time.
•
Twelve Years of Service
Posts: 340
Threads: 5
Points: 0NSP
RE: How do anti virus function? 09-01-2011, 06:54 PM
#2
You'll often notice RAT's covered as svchost.exe, crss.exe, winlogon.exe, nvvsvc.exe - If you can make it delete copies of those, it would be a good start. Also make sure that it checks the %temp% folder for suspicious files. Some of the virusses may be 'hidden' so turn the 'View hidden files and extensions' on and check the folder C:\Install\ for hidden files(If you got that folder, of course) and as last, make it check the roots.
(This post was last modified: 09-01-2011, 06:55 PM by Herlew.)
•
Twelve Years of Service
Posts: 969
Threads: 142
Points: 2.5NSP
RE: How do anti virus function? 10-19-2011, 02:32 AM
#4
Why do anti viruses require data bases?
•
Twelve Years of Service
Posts: 969
Threads: 142
Points: 2.5NSP
RE: How do anti virus function? 10-19-2011, 03:15 AM
#6
Thank's Coder San.. I guess I'll have to work on these details a bit more before I blindly start my project on anti viruses..
•
Twelve Years of Service
Posts: 5
Threads: 0
Points: 0NSP
RE: How do anti virus function? 10-20-2011, 07:19 AM
#7
Thank you Intimos.. Its been a big help. not only for us and also to all person that needs to understand the difference between normal program and virus.. Cheers
•
Twelve Years of Service
Posts: 969
Threads: 142
Points: 2.5NSP
RE: How do anti virus function? 10-20-2011, 03:19 PM
#9
When AV stays active in tray or at background, to monitor the files being created, transfered or removed, wont it occupy too much of the computer RAM?
•