SilentCryptoMiner icon indicating copy to clipboard operation
SilentCryptoMiner copied to clipboard

VM Detected

Open svox07 opened this issue 1 year ago • 3 comments

Привет Унам следующее обновление добавьте этот код для обнаружения Sandboxie.VM хоть как-то обезопасить от VirusTotal

bool VM = (new System.Management.ManagementObjectSearcher("SELECT * FROM Win32_PortConnector")).Get().Count == 0;

        if (VM)
        {
            MessageBox.Show("VM Detected");
        }
        else
        {
            MessageBox.Show("Real PC Detected");
        }

svox07 avatar Dec 07 '23 04:12 svox07