Disclosure Statement: This site contains affiliate links, which means that I may receive a commission if you make a purchase using these links. As an eBay Partner, I earn from qualifying purchases.

Subprocess EXE flagged by Avast

Post Reply
thefunkyjoint
Posts: 460
Joined: Thu Aug 10, 2017 12:40 pm

Subprocess EXE flagged by Avast

Post by thefunkyjoint »

Hi,

Since the last Avast update, the subprocess EXE of my app is being flagged as "Win32:Malware-gen". The odd thing is my app itself is not being flagged, only the subprocess EXE, that has only the code below :

Code: Select all

program subprocess;

uses
  uCEFApplication,
  uCEFTypes,
  Sysutils,
  ShlObj,
  Windows,
  Forms;

{$R *.res}

begin
  chdir(extractfiledir(paramstr(0)));
  GlobalCEFApp := TCefApplication.Create;
  GlobalCEFApp.StartSubProcess;
  GlobalCEFApp.Free;
end.    
Does anybody has similar issue ? Any hints to avoid this false positive ?

I don't use Avast, but a lot of people use it, so it's been a headache since they started to flag it.

Thanks
User avatar
salvadordf
Posts: 4074
Joined: Thu Feb 02, 2017 12:24 pm
Location: Spain
Contact:

Re: Subprocess EXE flagged by Avast

Post by salvadordf »

Many Delphi applications are incorrectly detected as malware. :oops:

We can only ask the antivirus developers to study this case again. It should help if we give them the link to the full source code and a clean EXE sample.

Please, send them your "subprocess.exe" using this form :
https://www.avast.com/false-positive-file-form.php
thefunkyjoint
Posts: 460
Joined: Thu Aug 10, 2017 12:40 pm

Re: Subprocess EXE flagged by Avast

Post by thefunkyjoint »

Thank you Salvador, i already sent the file, but so for no return :(
Post Reply