Searched defs:g_abNtCreateSectionPatch (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/HostDrivers/Support/win/
H A DSUPR3HardenedMain-win.cpp291 static uint8_t g_abNtCreateSectionPatch[16]; variable
2268 { sizeof(g_abNtCreateSectionPatch), g_abNtCreateSectionPatch, &g_pbNtCreateSection, "NtCreateSection" },
2391 memcpy(g_abNtCreateSectionPatch, pbNtCreateSection, sizeof(g_abNtCreateSectionPatch));
2410 g_abNtCreateSectionPatch[0] = 0x48; /* mov rax, qword */
2411 g_abNtCreateSectionPatch[1] = 0xb8;
2412 *(uint64_t *)&g_abNtCreateSectionPatch[2] = (uint64_t)supR3HardenedMonitor_NtCreateSection;
2413 g_abNtCreateSectionPatch[10] = 0xff; /* jmp rax */
2414 g_abNtCreateSectionPatch[1
[all...]

Completed in 2579 milliseconds