44

如果我的应用程序在虚拟机中运行,我如何检测(.NET 或 Win32)?

4

9 回答 9

47

这就是我使用的:

using (var searcher = new System.Management.ManagementObjectSearcher("Select * from Win32_ComputerSystem"))
{
  using (var items = searcher.Get())
  {
    foreach (var item in items)
    {
      string manufacturer = item["Manufacturer"].ToString().ToLower();
      if ((manufacturer == "microsoft corporation" && item["Model"].ToString().ToUpperInvariant().Contains("VIRTUAL"))
          || manufacturer.Contains("vmware")
          || item["Model"].ToString() == "VirtualBox")
      {
        return true;
      }
    }
  }
}
return false;

编辑 2014-12-02:更新代码,使其不再将 Microsoft Surface Pro 检测为 VM。感谢 Erik Funkenbusch 指出这一点。

编辑 2017-06-29:更新了代码,以便它还检查HypervisorPresent属性的值。

编辑 2018-02-05:删除了对该HypervisorPresent属性的检查,因为它不正确。如果在 hyper-V 服务器上的主机 O/S 上运行,此属性可能返回 true。

于 2012-06-21T19:21:34.140 回答
19

根据Virtual PC Guy的博文“检测微软虚拟机”,可以使用 WMI 来检查主板的制造商。在 PowerShell 中:

 (gwmi Win32_BaseBoard).Manufacturer -eq "Microsoft Corporation"
于 2009-01-31T06:15:55.003 回答
5

此 C 函数将检测 VM 来宾操作系统:(在 Windows 上测试,使用 Visual Studio 编译)

#include <intrin.h>

    bool isGuestOSVM()
    {
        unsigned int cpuInfo[4];
        __cpuid((int*)cpuInfo,1);
        return ((cpuInfo[2] >> 31) & 1) == 1;
    }
于 2015-08-14T15:07:57.940 回答
4

Jay Abuzi 在 powershell 中展示了解决方案。这与 ac# 函数相同:

   /// <summary>
    /// Detect if this OS runs in a virtual machine
    /// 
    /// http://blogs.msdn.com/b/virtual_pc_guy/archive/2005/10/27/484479.aspx
    /// 
    /// Microsoft themselves say you can see that by looking at the motherboard via wmi
    /// </summary>
    /// <returns>false</returns> if it runs on a fysical machine
    public bool DetectVirtualMachine()
    {
        bool result = false;
      const  string  MICROSOFTCORPORATION ="microsoft corporation";
        try
        {
            ManagementObjectSearcher searcher =
                new ManagementObjectSearcher("root\\CIMV2","SELECT * FROM Win32_BaseBoard");

            foreach (ManagementObject queryObj in searcher.Get())
            {
               result =  queryObj["Manufacturer"].ToString().ToLower() == MICROSOFTCORPORATION.ToLower();
            }
            return result;
        }
        catch (ManagementException ex)
        {
            return result;
        }
    }
于 2012-06-21T12:26:55.020 回答
2

对于较低级别的测试,我建议查看 ScoopyNG [1]。它是已知的低级、运行良好的 vm 检测方法的集合,尽管有些过时。

如果你真的想依赖其他东西,比如安装的工具(VM* Additions),这些更容易“伪造”。

这篇 [2] 博客文章也有一个很好的概述,从低级 asm 的东西,检查特定的 DLL、文件路径和注册表项来检查。

[1] http://trapkit.de/research/vmm/scoopyng/index.html

[2] http://securitykitten.github.io/vm-checking-and-detecting/

于 2015-07-13T12:20:20.117 回答
1

我发现确定我的 C# 应用程序是否在 vmware VM 上运行的最简单方法是检查 NIC 卡的 MAC 地址。如果它是 VMware VM,它将始终是:00:50:56:XX:YY:ZZ

您可以通过此处解决的 NIC 进行枚举

于 2012-02-01T05:15:56.743 回答
1
public static bool isVirtualMachine()
{
    const string MICROSOFTCORPORATION = "microsoft corporation";
    const string VMWARE = "vmware"; 

    foreach (var item in new ManagementObjectSearcher("Select * from Win32_ComputerSystem").Get())
    {
        string manufacturer = item["Manufacturer"].ToString().ToLower();
        // Check the Manufacturer (eg: vmware, inc)
        if (manufacturer.Contains(MICROSOFTCORPORATION) || manufacturer.Contains(VMWARE))  
        {
            return true;
        }

        // Also, check the model (eg: VMware Virtual Platform)
        if (item["Model"] != null)
        {
            string model = item["Model"].ToString().ToLower();
            if (model.Contains(MICROSOFTCORPORATION) || model.Contains(VMWARE)) 
            {
                return true;
            }
        }
    }
    return false;
}
于 2012-07-12T15:11:22.407 回答
1

此 C++ 代码将检测 Vmware 产品,例如 express、esx、fusion 或工作站

// VMWareDetector.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include "windows.h"
#include <conio.h>
void CheckVM(void); 
int main()
{
    CheckVM(); 
    _getch(); 
    return 0;
}

void CheckVM(void)
{
    unsigned int    a, b;

    __try {
        __asm {

            // save register values on the stack
            push eax
            push ebx
            push ecx
            push edx

            // perform fingerprint
            mov eax, 'VMXh' // VMware magic value (0x564D5868)
            mov ecx, 0Ah // special version cmd (0x0a)
            mov dx, 'VX' // special VMware I/O port (0x5658)

            in eax, dx // special I/O cmd

            mov a, ebx // data 
            mov b, ecx // data (eax gets also modified
                       // but will not be evaluated)

                       // restore register values from the stack
                       pop edx
                       pop ecx
                       pop ebx
                       pop eax
        }
    }
    __except (EXCEPTION_EXECUTE_HANDLER) {}
    printf("\n[+] Debug : [ a=%x ; b=%d ]\n\n", a, b);
    if (a == 'VMXh') { // is the value equal to the VMware magic value?
        printf("Result  : VMware detected\nVersion : ");
        if (b == 1)
            printf("Express\n\n");
        else if (b == 2)
            printf("ESX\n\n");
        else if (b == 3)
            printf("GSX\n\n");
        else if (b == 4)
            printf("Workstation\n\n");
        else
            printf("unknown version\n\n");
    }
    else
        printf("Result  : Not Detected\n\n");
}
于 2017-04-07T21:57:27.947 回答
1

请记住,您不应该只检查流行的 VM 型号、wmi 中的制造商名称,还应该检查现实和虚拟化之间的差异。
VM没有太多功能。
1)检查 CPU 温度信息是否可用

wmic /namespace:\\root\WMI path MSAcpi_ThermalZoneTemperature get CurrentTemperature
//On Real PC
//CurrentTemperature
//3147

//On VM
//Node - Admin
//Error:
//Description not supported

在 vmware、virtualbox、windows server、app.any.run 沙箱上测试。

2) Win32_PortConnector

Get-WmiObject Win32_PortConnector
//On Vm it is null

//On real pc it looks something like that
Tag                         : Port Connector 0
ConnectorType               : {23, 3}
SerialNumber                :
ExternalReferenceDesignator :
PortType                    : 2

于 2020-11-15T17:05:32.563 回答