This document summarizes a talk given by Dave Voutila about hardening emulated devices in OpenBSD's vmd hypervisor. The talk discusses how vmd currently uses a single process model that shares memory between the hypervisor and VMs, presenting security risks. It proposes moving to a multi-process model where each VM is launched via fork and exec to isolate it and remove leftover state. This would help prevent guest-to-host escapes by isolating device emulation and limiting information leaks between VMs. Some initial benchmarks show the changes have little performance impact on disk and network I/O. Future work is planned to further isolate guest memory and expand device support.