Closed iPigTW closed 11 months ago
You are using Windows Insider build version, latest version for public usage is still, 22631, since Windows 11 insider versions have constants changes until become a release i will not check further the issue, make sure you are not using any other thing like an antivirus that can intercept or block the NtQuerySystemInformation and try to fix your self, you are open to write down here what is going on with the fix and i will be glad to add to the main repository
2 solutions to grab ntoskrnl virtual address from user mode
for(uint64 cr3 = 0; cr3 < highestPhysicalAddress; cr3+=0x1000)
for(uint64 pNtoskrnl: allReadExecutePagesOf(cr3))//this is actually a 4 level for loop to walk page tables that starts from cr3
if(verify(cr3, pNtoskrnl))
return {cr3, pNtoskrnl};
return not_found;
This issue will be fixed by granting Debug Privilege
hard code that shit
Running on WIN11 23H2 25992.1000