Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

how is it that they can catch every single virus and trojan ?

what if i simply make a program that is a virus, and not tell anyone, could a AV software detect that ?

share|improve this question
3  
What a novel idea. I wonder why the other virus writers never thought of that. – Laurence Gonsalves Jan 25 '10 at 6:34

closed as off topic by tzot, casperOne Nov 28 '11 at 1:33

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

pattern matching basically. I'm not an expert, but basically the AV is looking for patterns matching known virus. This is what makes some so difficult as they change things up that make them hard to match. The virus writer can add stuff to the code rather randomly as it's being deployed to obvuscate the pattern.

I'm sure there is much more to it, but that's generally the deal.

share|improve this answer
what does it mean by pattern matching ? is it scanning 01000101010 or lines of code ..... – bohohasdhfasdf Jan 25 '10 at 6:58

Yes even if you create a Virus probability is that it will be detect because Anti Virus programs simply check for methods of execution for each program , their start-ups , registries. The only way to outsmart an Anti Virus would be to create a Virus that uses a new method of execution or attaching itself to other files. Besides most of the viruses don't have Digital Signatures and hence some Anti Virus programs detect them as Virus and quarantines the file.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.