vmcheck.go 210 B

1234567891011
  1. package vmcheck
  2. import (
  3. "github.com/sigma/bdoor"
  4. )
  5. // IsVirtualWorld returns whether the code is running in a VMware virtual machine or no
  6. func IsVirtualWorld() bool {
  7. return bdoor.HypervisorPortCheck()
  8. }