我想使用windbg获取SSDT和Shadow SSDT的地址。Windbg成功连接到vmware。我必须使用哪个命令来获取这些表的地址?
问问题
1664 次
1 回答
2
The x command displays the symbols in all contexts that match the specified pattern x [Options] Module!Symbol
.
lkd> x nt!*keservicedescriptortable*
82da2980 nt!KeServiceDescriptorTableShadow = <no type information>
82da2940 nt!KeServiceDescriptorTable = <no type information>
lkd> dps 82da2980
82da2980 82c9f634 nt!KiServiceTable
82da2984 00000000
82da2988 00000191
82da298c 82c9fc7c nt!KiArgumentTable
82da2990 95b66000 win32k!W32pServiceTable
82da2994 00000000
82da2998 00000339
82da299c 95b6702c win32k!W32pArgumentTable
于 2013-04-13T17:13:24.297 回答