python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
What exactly does the 32-bit win32k.sys/win32kfull.sys do on a 64-bit Windows operating system?
tl;dr The 32-bit binaries SysWow64/win32k[full].sys cannot be loaded into a running 64-bit kernel and do not have useful PE resources. What is their purpose on a 64-bit Windows machine?
I'm studying t...
nanofarad
Votes: 0
Answers: 0
Is it possible to implement paging without segmentation? x86
I've been told that segmentation is required for paging, why is that? AFAIK most systems with UEFI will start in long mode which I assume would not require segmentation at all?
user16469617
Votes: 0
Answers: 1
windbg kernel debugging - How to get the physical address
I have a module loaded at fffff801`16e00000 and want to get its physical address via !pte but windbg is saying "Levels not implemented for this platform", what gives?
I know how to do i man...
user16469617
Votes: 0
Answers: 2
Why does WriteProcessMemory need the handle value passed in, not the ID of the target process?
In the Windows system, we can modify the memory of another process across processes. For example, if process A wants to modify the memory of process B, A can call the system function WriteProcessMemor...
xiaomeng.fan
Votes: 0
Answers: 1