Subprocess EXE flagged by Avast
Posted: Thu Jul 05, 2018 6:45 pm
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 :
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
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.
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