skeeto / w64devkit

Portable C and C++ Development Kit for x64 (and x86) Windows
The Unlicense
2.66k stars 185 forks source link

Possible problem in archive #101

Closed toncho11 closed 6 months ago

toncho11 commented 6 months ago

Please note that some antivirus programs are detecting a problem with: 1.21.0

zip file: w64devkit-1.21.0.zip

Infected file: bin\debugbreak.exe Reported by F-secure.

Try https://www.virustotal.com on the zip file.

It might be a false positive, but it is worth investigating.

toncho11 commented 6 months ago

However in the 1.20 fortran version there is no such problem.

skeeto commented 6 months ago

That's a false positive — virus scanners doing a poor job as usual. The entire program from entry point to exit is a mere 88 instructions, so with a bit of assembly knowledge and a few spare minutes, you could manually validate it (i.e. via objdump -d and -p). Unfortunately there's nothing I can do about the false positive.

toncho11 commented 6 months ago

I see.