You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 8, 2026. It is now read-only.
As an example, most of nt's section are pageable (also true for any other drivers) which means the memory manager can page out those sections of code. This leads to part of nt / or other drivers not being part of a full crash-dump for example:
kd> u 0xfffff8045e811ee8
nt!RtlMinimalBarrier:
fffff804`5e811ee8 ?? ???
^ Memory access error in 'u 0xfffff8045e811ee8'
kd> ? 0xfffff8045e811ee8 - nt
Evaluate expression: 3579624 = 00000000`00369ee8
kd> !dh nt
[...]
SECTION HEADER #4
INITKDBG name
18F3B virtual size
351000 virtual address
19000 size of raw data
34F400 file pointer to raw data
0 file pointer to relocation table
0 file pointer to line numbers
0 number of relocations
0 number of line numbers
68000020 flags
Code
Not Paged
(no align specified)
Execute Read
Idea would be to add a driver to the project that could do that job.
As an example, most of
nt's section arepageable(also true for any other drivers) which means the memory manager can page out those sections of code. This leads to part ofnt/ or other drivers not being part of a full crash-dump for example:Idea would be to add a driver to the project that could do that job.