Norton Symantec Flagging my python script as Trojan.Bayrob9

I have symantec endpoint protection on my computer. I have the python script: import subprocess import os from ftplib import FTP os.chdir("public_html2") data=subprocess.check_output(["git", "diff","--name-only"]).decode("utf-8").split("\n") entries = [] for file in data: if file!="": entries.append(file.strip()) print(entries) ftp = FTP("website here") ftp.login("username here","password here") for entry in entries: with open(entry,"rb") as fl: ftp.storlines("STOR "+entry,fl) Everytime I run it norton symantec blocks the program and notifies me of "Trojan.bayrob9". My question is, is it more likely that I have an unrelated virus on my own computer, or that my python program is being treated as a virus.
http://dlvr.it/S1jDqp

No comments:

Post a Comment