Py2Exe应用被Windows Defender标记为恶意软件,该怎么办?

7
我写了一个应用程序,使用Python 2.x、PyQT4和MySQLdb,并使用py2exe打包。最近,我对应用程序进行了一些更新,将其移植到Python 3.4和PySide。我还删除了MySQLdb依赖项并添加了Requests。我使用新发布的Python 3版py2exe进行了打包。突然间,Windows Defender警告我的可执行文件是恶意软件。以下是日志条目:
Windows Defender has detected spyware or other potentially unwanted software.
 For more information please see the following:
http://go.microsoft.com/fwlink/?linkid=37020&name=BrowserModifier:Win32/Zwangi&threatid=144384
Name:BrowserModifier:Win32/Zwangi
ID:144384
Severity:High
Category:Browser Modifier
Path Found:file:C:\Users\alan.moore\Desktop\ticketuserclient3-beta1\ticketuserclient3\Contact tech support.exe
Detection Type:Concrete
Detection Source:Downloads and attachments
Status:Unknown
User:WILLIAMSON-TN\alan.moore
Process Name:C:\Windows\Explorer.EXE

所以我的问题是:
  • 为什么我被标记为恶意软件?我如何确定确切的原因?
  • 除了在所有 600 多个需要部署的工作站上“允许”这一点之外,我还能做些什么?
  • “检测类型:具体”是什么意思?
感谢任何帮助。
更新:显然,我使用 Python3.4 下的 py2exe 编译的任何东西都会被识别为这样。
我使用了这个脚本:
import sys
import platform

print (sys.platform)
print ("".join(platform.uname))

而这个 setup.py 文件

from distutils.core import setup
import os
import py2exe

setup(
    windows=[{"script":"test.py", "dest_base":"Contact tech support"},],
    options= {
        "py2exe" : {
            "compressed":1,
            "optimize":2,
            "bundle_files":3
            }
        },
        zipfile = None
)

这被标记为恶意软件 (Win32/Zwangi)。


3个回答

2

1

0

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接