InjectAll
InjectAll copied to clipboard
Tutorial & a blog post that demonstrate how to code a Windows driver to inject a custom DLL into all running processes. I coded it from start to finish using C++ and x86/x64 Assembly language in Micro...
BSOD Critical Structure Corruption happens in CI.dll after 30 40 minutes
x86 dll, unable to create thread, crashes once the process is created.
compiled as Release x64 on VM Win 20H2 got PAGE_FAULT_IN_NONPAGED_AREA
//Alloc memory DLL_STATS* pDStats = (DLL_STATS*)ExAllocatePool2(ALLOC_TYPE_OnLoadImage, sizeof(DLL_STATS), TAG('kDSm')); Since ExAllocatePoolWithTag is deprecated, i use ExAllocatePool2 now, but it failed to allocate memory.