防病毒软件如何工作?
防病毒程序的基本工作原理是什么?
What are the basic working principles of an antivirus program?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
防病毒程序的基本工作原理是什么?
What are the basic working principles of an antivirus program?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
它将已知病毒的模式与每个文件进行匹配。
例如,将可执行文件更改为直方图,并比较该可执行文件与已知病毒之间的相似性。
另一种方法是扫描多态性等设计模式并将其进行比较,这可能会导致误报(在非常复杂的应用程序中),但也会捕获未知病毒。
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.