vote up 0 vote down star

I have a requirement for which I have to get online without protection (firewall, anti-virus). At the same time, I don't want to risk getting infected with viruses.

If I install a virtual machine (VirtualBox) to test, and it does get infected with viruses, will it also infect my host system? In other words, can I use the virtual machine for testing without being concerned about a virus on the virtual machine infecting my host?


0% accept rate

migrated to superuser.com by Greg Hewgill, Brian Rasmussen, Nick D, Pavel Shved, Lieven Sep 30 at 11:13

1 Answer

vote up 1 vote down

No, if you don't setup any network connection (like NAT or Bridge) between host and guest OS. If you want to ensure total separation between the two worlds, please prefer "Bridge" connections and map one NIC to your Host PC and one other NIC to your VM-ed Guest.

It would be like having two isolated networks sharing only the powering bus (your actual PC, indeed).

VirtualBox, but also VMWare or Xen or Parallels, can easily setup for you such an environment.

link|flag
Theoretically, I believe it is possible for a virus to detect that it is running in a virtual machine and exploit the host interface to attack the host. AFAIK, there are real world virus' that modify their behaviour in VMs (to make white hats jobs harder), but none that can infect the host. I imagine VM developers do a lot to keep the host interface as secure as possible. – Steve314 Sep 30 at 11:32
I think you're not totally wrong, but not even right ;-) VMs using specific ISA extensions build up a "RING -1" (sorry for the improper term, but that's it). Neither Guest OS nor Guest applications, as a virus could be, can bypass RING0 calls, thus ensuring the safety for virtualizer itself. If virtualizer if intrinsically safe, then it's quite hard to argue that an application can modify its behavior and become harmful for it, so up to day there'd be nothing to worry about. Just my two cents. – ZZambia Oct 1 at 15:37

Not the answer you're looking for? Browse other questions tagged or ask your own question.