Search code examples
c#antivirus

Solving VirusTotal Detections


I've made some simple tools for use in the modding scene for a game (mechwarrior 5) however the programs are getting flagged by VirusTotal. Is there anything I can do to reduce the detections? I'm not interested in getting a certificate.

Detections:

Source code for given files:


Solution

  • Getting cerificate could significantly reduce number of false positives, however you say that's not an option for you. Other than that I can advise:

    1. report false positives to AV companies. It usually helps but not always possible to find the way to report it and then to get any answer
    2. use something like bisection method. Simplify app and check if it still fails. If fails/passes - check more simple/complex app trying to find what breaks detection and then trying to re-implement that breaking change in some other way.