Hi everybody. In general, this is the problem. When I digitally sign the driver and hide it using
// hide the hypervisor
hv::for_each_cpu(& {
for (size_t i = 0; i < hv_size; i += 0x1000) {
auto const virt = hv_base + i;
auto const phys = hv::get_physical_address(0, virt);
if (!phys) {
printf("failed to get physical address for 0x%p.\n", virt);
continue;
}
if (!hv::hide_physical_page(phys >> 12))
printf("failed to hide page: 0x%p.\n", virt);
}
});
I'm fine. But when I map the driver using kdmapper and also hide it, the whole system freezes after an hour. I'm trying on apex, where eac is installed. Maybe someone has encountered this problem and knows how to solve it?
Hi everybody. In general, this is the problem. When I digitally sign the driver and hide it using
// hide the hypervisor
hv::for_each_cpu(& {
for (size_t i = 0; i < hv_size; i += 0x1000) {
auto const virt = hv_base + i;
auto const phys = hv::get_physical_address(0, virt);
if (!phys) {
printf("failed to get physical address for 0x%p.\n", virt);
continue;
}
if (!hv::hide_physical_page(phys >> 12))
printf("failed to hide page: 0x%p.\n", virt);
}
});
I'm fine. But when I map the driver using kdmapper and also hide it, the whole system freezes after an hour. I'm trying on apex, where eac is installed. Maybe someone has encountered this problem and knows how to solve it?