ByePg
ByePg copied to clipboard
Defeating Patchguard universally for Windows 8, Windows 8.1 and all versions of Windows 10 regardless of HVCI.
I'm currently running ByePG (ExHook) on a VMWare machine with Win10 and WinDBG attached through serial port. First issue was on finding ntoskrnl base address in Internals::Resolve() but fixed adding...
Hello, i did some testing with the library, it seems good so far, altough i have a little error. I modified the ExHook like this, the reason is, that the...
Hello, it is possible to avoid bsod if you want read\write protected (by PG) memory for loaded modules like ‘**win32k.sys**’ or ‘**win32kbase.sys**’ via hooking exception table like in your solution...
Hello all. I've got a detour for SwapContext and want to protect this detour using ByePg. Can ByePg do this with modification to the ByePg source code? I'm receiving a...
example ``` void MyFunction() { __try { int a = *(int*)0x123; } __except (1) { DbgPrintEx(0, 0, "exception code: 123\n"); } } NTSTATUS hk_NtTerminateProcess(HANDLE ProcessHandle, NTSTATUS ExitStatus) { //... MyFunction();...