L'applicazione che ho scritto è elencata come malware. Come sistemarlo?

10

Ho un programma che ho scritto in Delphi . Il programma è disponibile per il download, ma alcuni antivirus come Norton lo individuano come malware, mentre altri antivirus, come AVG , non ha problemi con esso.

Inoltre, Google Chrome segnala anche un malware quando desideri scaricare il programma dal mio sito web.

C'è un modo per impedirlo, oltre a mettere il file EXE in un file ZIP ?

    
posta Japie Bosman 17.03.2012 - 13:21
fonte

3 risposte

18

Dovresti provare a contattare il servizio clienti di Norton (Symantec?). Credo che questa sia una pratica standard tra i venditori di programmi legit che sono erroneamente contrassegnati come virus.

    
risposta data 17.03.2012 - 15:26
fonte
11

Qualcosa da tenere a mente: potrebbe davvero essere infetto. C'è un virus là fuori che infetta Delphi stesso. Se sei infetto da esso, qualsiasi eseguibile prodotto da Delphi sarà infetto.

    
risposta data 17.03.2012 - 21:57
fonte
8

Nel caso in cui qualcuno fosse interessato, questo articolo tratta un caso simile con un programma che è solo una funzione WinMain non-nulla - The Case of Evil WinMain .

Story about how a third of all antivirus programs has gone crazy for no obvious reason...

#include <windows.h>

int WINAPI WinMain(HINSTANCE inst,HINSTANCE prev,LPSTR cmd,int show) {
    return 0;
}

...

So what caused additional antivirus software vendors to go NUTS?

I am starting to feel that they simply started to search for malware in libc itself. If so then that's kind of strange because there is not that many versions of libc linked to nearly everything under the sun over and over.

Here is the mentioned VS 2008 ProjectFile + source + resulting binary not doing anything along with vtotal results for it.

But please go ahead and create an EMPTY C++ project to see it yourself.
Add a cpp file with this empty winmain doing nothing build release ...

    
risposta data 17.03.2012 - 21:20
fonte

Leggi altre domande sui tag