我的程序被 AVG 报告为高级安全威胁?
我最近开始向人们分发我的 XNA 4.0 游戏。在安装了AVG的电脑上,该游戏被检测为误报病毒,具有较高的安全威胁。
我不知道发生了什么事。我所知道的是,当它发生时,存在无限循环问题。 AVG是否可以将其作为病毒检测的标准进行检测?
如何向 AVG 报告误报?我找到了这个网站 http://www.geekstogo.com/forum/topic/273320-where-to-submit-false-positives-to-antivirus-and-security-vendors/
但是在AVG下,它仅显示如何提交误报网站。
I recently started distributing my XNA 4.0 game to people. On computers with AVG installed, it detected this game as a false positive virus with a high security threat.
I have no idea of what is going on. All I know is that when it happened, there was an infinite loop issue. Could this be detected by AVG as a criteria for virus detection?
How can I report a false positive to AVG? I found this website http://www.geekstogo.com/forum/topic/273320-where-to-submit-false-positives-to-antivirus-and-security-vendors/
But under AVG, it only shows how to submit false positive websites.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过以下链接获取更多信息,以便使用 AVG 处理误报。请务必查看第四节。
http://www.avg.com/us-en/whitelist 误报,我对病毒扫描程序不太熟悉,但您的软件可能会触发误报的原因有很多。也许代码(巧合地)与病毒签名的某些部分匹配,或者启发式匹配(在软件中查找某些行为模式)将其标记为可疑(您正在删除文件吗?用内存做一些奇怪的事情?使用多态代码?等等)。我怀疑无限循环本身可能会导致这个问题。
You can get more information in order to handle the false positive with AVG at the below link. Make sure to check out section IV.
http://www.avg.com/us-en/whitelist
As far as the false positive goes, I am not intimately familiar with virus scanners, but there are probably tons of reasons your software could have triggered a false positive. Perhaps the code (coincidentally) matches some part of a virus signature, or perhaps heuristic matching (which looks for certain behavioral patterns in software) flagged it as suspicious (are you deleting files? doing funky things with memory? using polymorphic code?, etc). I doubt an infinite loop in itself could have lead to the issue though.