Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Malware? #13

Open
HughMungis opened this issue Nov 13, 2024 · 1 comment
Open

Malware? #13

HughMungis opened this issue Nov 13, 2024 · 1 comment

Comments

@HughMungis
Copy link

I uploaded the .exe to virustotal and there are a lot of detections saying that this is malware. Why is this happening?

@acarapetis
Copy link
Owner

It's a false positive.

We use pyinstaller to pack this python app into a single .exe that anyone can run on Windows. A lot of malware authors do the same thing - write some malware in python and package it with pyinstaller. Unfortunately, this has led to some antivirus software just flagging anything built with pyinstaller as malware.

Not much that can be done about it without submitting every release to all those antivirus vendors for manual evaluation, not going to happen for a hobby project like this.

At the end of the day, whenever you download and run software from the internet you're trusting the author. A green light from virustotal does not guarantee there's no malware there, just as a red light does not guarantee there is. Gotta make your own risk assessment.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants
@acarapetis @HughMungis and others