mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-20 03:23:23 +08:00
[!] fixed: previous revision
git-svn-id: https://pykd.svn.codeplex.com/svn@60263 9b283d60-5439-405e-af05-b73fd8c4d996
This commit is contained in:
parent
b4898cff7e
commit
25e7428ac1
@ -154,7 +154,7 @@ BOOST_PYTHON_MODULE( pykd )
|
||||
.def("end", &dbgModuleClass::getEnd )
|
||||
.def("name", &dbgModuleClass::getName )
|
||||
.def("contain", &dbgModuleClass::contain )
|
||||
.def("__getattribute__", &dbgModuleClass::getOffset );
|
||||
.def("__getattr__", &dbgModuleClass::getOffset );
|
||||
boost::python::class_<dbgExtensionClass>(
|
||||
"ext",
|
||||
"windbg extension",
|
||||
|
@ -9,8 +9,6 @@ def loadSymbols():
|
||||
|
||||
global nt
|
||||
nt = loadModule( "nt" )
|
||||
nt.ObpRootDirectoryObject = getOffset( "nt", "ObpRootDirectoryObject" )
|
||||
nt.ObpDirectoryObjectType = getOffset( "nt", "ObpDirectoryObjectType" )
|
||||
|
||||
|
||||
def getObjectInDir( dirObj, objName ):
|
||||
|
@ -11,10 +11,6 @@ def checkInterrupt():
|
||||
idtr = reg( "idtr" )
|
||||
|
||||
nt = loadModule( "nt" )
|
||||
nt.KiInterruptDispatch = getOffset( "nt", "KiInterruptDispatch" )
|
||||
nt.KiChainedDispatch = getOffset( "nt", "KiChainedDispatch" )
|
||||
nt.KiInterruptTemplate = getOffset( "nt", "KiInterruptTemplate" )
|
||||
|
||||
hal = loadModule( "hal" )
|
||||
|
||||
ErrorCount = 0
|
||||
|
@ -5,7 +5,7 @@ import sys
|
||||
def checkSSDT():
|
||||
|
||||
nt = loadModule( "nt" )
|
||||
nt.KeServiceDescriptorTable = getOffset( "nt", "KeServiceDescriptorTable" )
|
||||
|
||||
|
||||
if is64bitSystem():
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user