how does antivirus works? [closed]
What are the basic working principles of an antivirus program?
it matches patterns of known viruses with each file.
for example change the executable into a histogram and compare the similarity between that executable and known viruses.
another way is to scan for design patterns such as polymorphisism and comparing those to, this can lead to false positives (in very complex apps) but also catch unknown viruses.
A antivirus reads trough all files and searches for patterns of known viruses in the files.
精彩评论