I have a simple launcher for my program:
@echo off
del /s /f /q "Log.txt"
for /f "delims=" %%x in (lic.dll) do set "lic=%%x"
if %lic%==1 goto full
if %lic%==0 goto normal
goto fail
:full
start m1.hta
rem Hideself
goto fail
:normal
start m2.hta
rem Hideself
goto fail
:fail
goto :eof
When i virus scan it i get this: https://www.virustotal.com/en/file/4091db406700b751ab4b01df901a4992226235abc16b87adb047911e0e256b08/analysis/1398529283/
Saying that the file is clean. My problem arises when i compile it in to a exe.
If i use advanced bat to exe converter To convert it i get this:https://www.virustotal.com/en/file/ab3bac03bcdd6aa1305764a1f64e77e651522246c2d7abbd1da427d76604ec2e/analysis/
This is the same batch file just compiled and it coming up as a virus is a real problem. So i decided to search for a different bat to exe program. I got similar results.
My question is: Can any one ether help me find a solution or a alternative piece of software i can use. It must be able to compile the above code in to a exe with a virus detection of less than 4. Also it must be secure (cant be revers engendered easily or unzipped). This is a problem that has been on going and may stop the release of the program so whoever manages to help i will also award 50 rep as an extra bounty.