Kernel-Bridge
Kernel-Bridge copied to clipboard
Windows kernel hacking framework, driver template, hypervisor and API written on C++
While testing, I noticed reading a process memory using Kernel-Bridge is slower than a small driver I wrote. I checked and it seems KB is mapping MDLs and then copies...
Hello, I tried loading the signed binaries but i get the message "a certificate was explicitly revoked by its issuer"
Please let us know when can we have an ARM64 version for Windows on ARM OS. We can help you test We have Windows on Rasberry Pi setup. Please pursue...
Would it be possible to edit the DMI information that resides in the ROM ( 0x000F0000-0x000FFFFF ) ? I've tried editing the SMBIOS that resides in the Phys address and...
Is there any example how to load unsigned drivers with that library ?
Hi , you can use https://github.com/wbenny/KSOCKET KSOCKET is windows kernel socket. Its very easy to use.You can implement it. But there is no usermode to use it.Its kernel only. Just...
How to use ept hook
`debug_me.exe` is a simple application which call MessageBoxA when button clicked. Now we use KbWriteProcessMemory with TriggleCoW to `user32.MessageBoxA` like this: ```c++ VOID BSOD_Test() { WdkTypes::PEPROCESS Process; DWORD ProcessId =...
in my previous question #25 i described how i have access to kernel functions and system (kernel) address space. is it possible to map all physical memory to system address...
after the target process terminated, there will still be a pfn left on system, and bsod when produrce of memory management try to scan all pfn and find a useless...