Determine when running in a virtual machine - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T06:21:34Z http://stackoverflow.com/feeds/question/779723 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/779723/determine-when-running-in-a-virtual-machine 12 Determine when running in a virtual machine Jim McKeeth 2009-04-22T23:51:13Z 2009-12-01T01:40:36Z <p>Is there an <em>official</em> way for an application to determine if it is running in VMWare or Virtual PC (or whatever Microsoft is calling it now)? The code I have seen is usually a hack that took advantage of some odd behavioral side effect in a specific version of VMWare or Virtual PC. </p> <p>Ideally Delphi code, but if you can link to an official explanation then I am sure I can convert it.</p> http://stackoverflow.com/questions/779723/determine-when-running-in-a-virtual-machine/779732#779732 3 Answer by TStamper for Determine when running in a virtual machine TStamper 2009-04-22T23:55:18Z 2009-04-22T23:55:18Z <p>Code Project shows a way to <a href="http://www.codeproject.com/KB/system/VmDetect.aspx" rel="nofollow">Detect if your program is running inside a Virtual Machine</a> that goes in much detail on how to accomplish it to give a good understanding</p> http://stackoverflow.com/questions/779723/determine-when-running-in-a-virtual-machine/779736#779736 1 Answer by Michael Madsen for Determine when running in a virtual machine Michael Madsen 2009-04-22T23:56:50Z 2009-04-23T00:11:36Z <p>There is a WMI way posted here: <a href="http://blogs.msdn.com/virtual%5Fpc%5Fguy/archive/2005/10/27/484479.aspx" rel="nofollow">http://blogs.msdn.com/virtual_pc_guy/archive/2005/10/27/484479.aspx</a></p> <p>I've double checked in an XP image running on Virtual PC, and the value they're testing for is still the same. I won't guarantee what other VMs return here, though...</p> <p>I've actually got a Delphi program I wrote a couple of years ago to get a list of and change the default printer using WMI, without requiring 3rd party components or anything like that. In case you're not used to working with WMI from Delphi, I can send you a copy so you have something to work off (it's not necessarily Unicode-compatible, though, but it shouldn't be too hard for me to upgrade it if need be).</p> http://stackoverflow.com/questions/779723/determine-when-running-in-a-virtual-machine/779737#779737 2 Answer by John T for Determine when running in a virtual machine John T 2009-04-22T23:57:14Z 2009-04-22T23:57:14Z <p>I think the best approach to this is to check the hardware profiles. Virtualized hardware usually uses part of the companies name. If you check the motherboard description while in Virtual PC, you will notice it is made by "Microsoft Corporation". Likewise in VMWare, your ethernet adapter will be prefixed with VMNet.</p> http://stackoverflow.com/questions/779723/determine-when-running-in-a-virtual-machine/779932#779932 20 Answer by Marshall Fryman for Determine when running in a virtual machine Marshall Fryman 2009-04-23T01:15:48Z 2009-04-23T01:21:48Z <p>I wrote a series of articles last year on this, with source code. VMware and Wine detection are <a href="http://ruminatedrumblings.blogspot.com/2008/04/detecting-virtualized-environment.html" rel="nofollow">here</a>. Virtual PC is <a href="http://ruminatedrumblings.blogspot.com/2008/04/detecting-virtual-pc.html" rel="nofollow">here</a>. All three of these have pretty iron-clad detection because there are documented callbacks to the hypervisor (in the case of Wine, an extension to a standard DLL). I put up an untested VirtualBox detector (don't have it installed to test with) in the comment section. Parallels might be detectable using a callback also but I don't have it installed. The link for the documentation (which is poor since it's from a security researcher focusing on exploits) but located <a href="http://www.symantec.com/avcenter/reference/Virtual%5FMachine%5FThreats.pdf" rel="nofollow">here</a> if you have it installed and are interested. There's also a PPT <a href="http://www.google.com/url?sa=t&amp;source=web&amp;ct=res&amp;cd=2&amp;url=http%3A%2F%2Fpferrie.tripod.com%2Fpapers%2Fattacks2.ppt&amp;ei=7MHvSczLJo7mtAOW6ajPCg&amp;usg=AFQjCNGRplVTFKQ%5F7D7o8mK2QiqQZ79PNA&amp;sig2=Wdty-ues8rtPo8DXhrVmxw" rel="nofollow">here</a> that has some information on detecting Sandbox, Bochs, and Xen. Not a lot of code in it but it might give you a starting point if you have to detect those.</p> http://stackoverflow.com/questions/779723/determine-when-running-in-a-virtual-machine/781140#781140 2 Answer by Bruce McGee for Determine when running in a virtual machine Bruce McGee 2009-04-23T10:26:25Z 2009-04-23T10:26:25Z <p><a href="http://forum.sysinternals.com/forum%5Fposts.asp?TID=15666" rel="nofollow">This thread</a> on the SysInternals forums has a couple of answers (in Delphi, of course), including a single IsVM function. I've tested on XP and Win2003 hosted on both XP and Vista in VMWare with good results.</p> http://stackoverflow.com/questions/779723/determine-when-running-in-a-virtual-machine/787837#787837 1 Answer by skamradt for Determine when running in a virtual machine skamradt 2009-04-24T23:39:53Z 2009-04-24T23:45:12Z <p>I used the <a href="http://www.invisiblethings.org/papers/redpill.html" rel="nofollow">RedPill</a> method (translated to Delphi, but the code isn't that hard to understand) which worked fairly well. I also included a few extra checks using WMI calls to get things like the network adapter vendor name and copyrights, but that was for detecting specific versions of Virtual PC.</p> <p>My understanding of the RedPill method is that it should work and detect all virtual machines based on the nature of how it works. There is the possiblity that false positives might be generated also as the new Windows within Windows feature of Windows 7 can be configured to run selected programs in a copy of Windows XP seamlessly inside Windows 7.</p> http://stackoverflow.com/questions/779723/determine-when-running-in-a-virtual-machine/790876#790876 0 Answer by stanleyxu2005 for Determine when running in a virtual machine stanleyxu2005 2009-04-26T13:54:57Z 2009-04-26T13:54:57Z <p>This code might be helpful:</p> <pre><code>function IsRunInVPC: Boolean; begin Result := False; try asm push ebx mov ebx, 0 mov eax, 1 db 0Fh, 3Fh, 07h, 0Bh test ebx, ebx setz [Result] pop ebx end; except end; end; </code></pre> http://stackoverflow.com/questions/779723/determine-when-running-in-a-virtual-machine/925026#925026 0 Answer by unknown (google) for Determine when running in a virtual machine unknown (google) 2009-05-29T08:45:20Z 2009-05-29T08:45:20Z <p>If you want to generally detect the presence of any type of virtualization, you are best analyzing performance characteristics. Take something that is significantly slower in virtualization (such as MMU heavy workload like a fork-bomb) and time it against a normal CPU bound user space app. From the ratio you can easily tell.</p> <p>Easiest in terms of effort if you only care about certain VMMs is to look for their hardware- i.e. VMware PCI devices:</p> <p>00:07.3 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 08) Subsystem: VMware Inc Virtual Machine Chipset</p> <p>15ad:1976</p> <p>The vendor value is '15ad'</p> <p>There are also specific backdoor ports that work across various VMMs in various versions. SIDT trick is good too, but what if a VMM is not on the list that his code is checking?</p> http://stackoverflow.com/questions/779723/determine-when-running-in-a-virtual-machine/1823520#1823520 0 Answer by DAE51D for Determine when running in a virtual machine DAE51D 2009-12-01T01:40:36Z 2009-12-01T01:40:36Z <p>I've had good luck with just looking at the MAC address as all manufacturers are given a block and the first 3 parts are unique to them. </p> <pre><code>//look at the MAC address and determine if it's a Virtual Machine $temp = preg_split("/\s+/",exec("/sbin/ifconfig -a eth0 2&gt;&amp;1 | /bin/grep HWaddr"), -1, PREG_SPLIT_NO_EMPTY); //Virtual Box MACs all start with '08:00:27:xx:xx:xx' if (strpos($temp[4], '08:00:27') !== false) $_SESSION['DEVELOPMENT'] = true; </code></pre>