I just ran into an annoying problem. Suddenly Avira AntiVir started to flag one executable from my software as being a virus.

As the default action from almost any user is to click OK and Avira suggests to put the virus in quarantine, most of my users are deleting this executable.

Well, let's not be arrogant and check if I'm not infected indeed. I posted the file to http://www.virustotal.com and from all anti virus only Avira flags it as infected. Furthermore I scanned my computer with two different anti viruses and it is clean.

I already posted a mail to my users explaining what is happening but this is an overhead to my support that I really don't want.

OK, the question is: Is there a way to avoid this kind of behavior? I can't think any way else than signing the files, (don't really know if it would solve) but let's see if you have any creative idea.

link|improve this question

3  
That VirusTotal site is cool! Thanks for includign the link! – Michael Rodrigues Jul 27 '10 at 0:56
AVG is also a week anti-virus that reports lots of false positives. I have seen it with my (clean) programs. – Altar Apr 18 '11 at 15:46
feedback

8 Answers

up vote 20 down vote accepted

It is surprisingly common that Delphi applications are reported as (potentially) harmful by AV applications. It happened to me a while ago, using Delphi 2009, see http://en.wikipedia.org/wiki/Wikipedia:Reference_desk/Archives/Computing/2010_March_20#Delphi.2FAVG_Issue.

At SO, we also have

and many more.

It might be the actual Induc Virus. But most likely, it is a false positive.

link|improve this answer
feedback

Andreas's answer is excellent; it just happens a lot to Delphi applications.

Signing code doesn't make any difference -- I've had NOD32 throw false positives on signed Delphi code.

If there were any techniques that would avoid false-positives, virus authors will use them to avoid detection.

I've found the best course of action is, unfortunately, reactive rather than proactive. All AV vendors have a facility to report false positives, and I've found them to be responsive to reports.

link|improve this answer
3  
+1: submitting to the AV vendor is the best option – Remko Jul 27 '10 at 7:13
Indeed. Avira took less than 12 hours to confirm the false positive. – Ricardo Acras Jul 27 '10 at 11:31
feedback

In Free Pascal/Lazarus groups and bugtracker, such messages happen nearly every release and/or month.

We generally advise users to ignore all "generic" or "heuristic" scanning types, and stick to signature based scanning (as most corporate virusscanners do).

This because it is nearly always an heuristic alarms, never specific malware. This can be readily seen in the fact that the detected "virus/trojan" is nearly always of the "generic" type. Usually the virusscanners are also typical "home" virusscanners, or home editions of general virusscanners (Norton used to be particularly bad, nowadays it mostly the smaller scale "cheap" home use scanners)

However we communicate mostly with developers, and already have trouble getting this message across. I can imagine, when distributing to clueless end-users, this is a real difficult message to communicate.

Still, there is no other way.

link|improve this answer
I've received some comments on this post, acusing me of dissing "home" scanners. I didn't mean to do that since I assume the corporate and home scanners of McAfee and Norton are the same codebase anyway. The point is more that the default settings differ. Corporate versions typically turn off uncertain heuristics. – Marco van de Voort Nov 21 '10 at 13:29
Home users are MUST more lickly to get hit by new viruss, as they are less carefull then a IT department, therefore it is reasonble for the home setting to default to doing as many checks as possible. – Ian Ringrose Nov 24 '10 at 16:55
Home users can turn the avirus off on false positives which is a far bigger risk. But the reality is that home avirus is bought for "scare" value. Home users think that a virus that doesn't react daily is worthless. – Marco van de Voort Nov 25 '10 at 8:05
feedback

As a solution, you may want to:

1 - Verify your Delphi compiler is not infected
2 - Verify your sources and libraries are not tempered with (that was the M.O. for the Induc Virus)
3 - Check your (guaranteed) clean exe with the AVs. If they report a false positive, contact them so they could fix their tests.

4 - If you need to distribute before there is a chance to correct the AVs, sign your exe, so that your users could verify it's clean.

link|improve this answer
feedback

There are several reasons why an Anti Virus product might trigger on a Delphi produced exe, a few common reasons are:

  • Lots of viruses are written in Delphi and therefore your exe might have some code parts that look the same as existing viruses.
  • The import table of your program is used to determine what your exe might do, for instance linking to Credentials Management or Disk Management functions triggers some AV's.

As suggested before try scanning your release version with online services such as Virustotal or Jotti and always report your false positives to vendors instead of trying to prevent being a false positive. My experience is that AV vendors react quite fast on submission.

link|improve this answer
feedback

False positive :) Check

http://www.ginktage.com/2010/01/delphi-7-mcafee-and-virus/

I have described the problem and possible solution too .

link|improve this answer
feedback

Many honest developers have problems because of careless antivirus software. See this also: How to prevent false positive virus alarm on my software?

Imagine that for each false positive they show, you lose a possible customer. Maybe we can unite against such antivirus products and force them to be more careful about false positive alarms, even to get some revenue back for the sales we lose because of them.

link|improve this answer
feedback

Please see the new organization The False Positive Report http://falsepositivereport.com - This is a new CENTRAL repository the security companies have (many of them) already pledged to monitor to false positives and site mis-ratings. Finally! Responsive support. If they don't respond, then the public can have a chance to see such.

AVOIDANCE THROUGH ACCOUNTABILITY & TRANSPARENCY - FIXING AFTER THE FACT IS NOT ENOUGH!

The False Positive Report at http://falsepositivereport.com is helping to prevent false positives and mis-rating of web sites, instead of merely retroactively addressing them

This is a new effort to help slow (and expose) the plague of false positives and mis-rated web sites that are destroying hundreds or thousands of small businesses every year. Some security companies do better than others, but never before has there been a place where false positives and mis-rated sites can be publicly reported. The security companies can then respond, fix the issue, then determine why it happened and work with the vendor to avoid it in the future. After all, once a false positive happens, the damage is already done. Some security companies will not even respond to reports of false positives and mis-rated sites, much less work to avoid them in the future. Other companies DO act much more responsibly.

This is NOT about crucifying security companies. They do have a terribly hard job. Still, many of them can and should do better. This site is about showing which companies are doing the best to avoid collateral damage. It is also intended to facilitate the mitigation of collateral damage when it occurs, and, through communication, help prevent collateral damage (FPs) from recurring. For instance, why did the FP or mis-rating occur? What can be done to avoid it in the future?

Ironically, malware authors are hardly affected by these aggressive tactics. After all, if these tactics really worked, why would there be so many malware infestations?

Also remember, public transparency and accountability will let consumers know which security companies care about the collateral damage they inflict. Is this not important in your purchasing decision? If not, it should be . By choosing carefully with whom you spend your money, YOU can force companies to start behaving ethically.

This is non-profit, non-money, all-volunteer organization, btw..

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.