Ask HN: How do I prevent programs actively detecting they're running in a VM?
1–9 of 9 posts
Re: Ask HN: How do I prevent programs actively detecting they're running in a VM?
#2https://stackoverflow.com/questions/498371/how-to-detect-if-...
Some of the methods used, like checking the manufacturer ID of the hardware, seem like they can't be easily circumvented.
Re: Ask HN: How do I prevent programs actively detecting they're running in a VM?
#3This article discusses various ways of detecting if a program is running on a VM: https://stackoverflow.com/questions/498371/how-to-detect-if-... Some of the methods used, like checking the manufacturer ID of the hardware, seem like they can't be easily circumvented.
Re: Ask HN: How do I prevent programs actively detecting they're running in a VM?
#4This article discusses various ways of detecting if a program is running on a VM: https://stackoverflow.com/questions/498371/how-to-detect-if-... Some of the methods used, like checking the manufacturer ID of the hardware, seem like they can't be easily circumvented.
At the end of the day, you pretty much need a kernel mode agent that hooks a couple dozen syscalls, but it's largely doable if you have a team of engineers at your disposal. Malware detonation shops like FireEye do it.
https://en.wikipedia.org/wiki/CPUID#EAX.3D1:_Processor_Info_...
Re: Ask HN: How do I prevent programs actively detecting they're running in a VM?
#5--
[1] Physicalization - the opposite of virtualization
Re: Ask HN: How do I prevent programs actively detecting they're running in a VM?
#6Physicalization [1] - use a separate machine instead of a VM -- [1] Physicalization - the opposite of virtualization https://en.wikipedia.org/wiki/Physicalization
Re: Ask HN: How do I prevent programs actively detecting they're running in a VM?
#7Re: Ask HN: How do I prevent programs actively detecting they're running in a VM?
#8Physicalization [1] - use a separate machine instead of a VM -- [1] Physicalization - the opposite of virtualization https://en.wikipedia.org/wiki/Physicalization
Yeah, I was thinking about just partitioning my drive to use just for this shit that I'm required to run.