New Post: could I debug kernel outside of Windbg?
changeset/85045: (not yet released)Python 2.7.5 (default, May 15 2013, 22:44:16) [MSC v.1500 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>>...
View ArticleNew Post: could I debug kernel outside of Windbg?
nice! that's I need would it be supported in next version? and it's better to support debug local and remote kernel~
View ArticleNew Post: why getOffset always fails?
lkd> .sympath Symbol search path is: srvc:\symbolshttp://msdl.microsoft.com/download/symbols Expanded Symbol search path is: srvc:\symbolshttp://msdl.microsoft.com/download/symbols lkd> !pycmd...
View ArticleNew Post: why getOffset always fails?
1) try to reload symbols for nt manually in kd/windbg: kd>!sym noisy kd>.reload /f nt kd>lmvm nt Check output. May be symbols are unavailabale? 2) There is one trick. I usefull for minidump...
View ArticleNew Post: could I debug kernel outside of Windbg?
I have a look to code from changeset/85045,. Local kernel debugging is supported. You simply call attachKernel without argument. If you can not build pykd yourself, write to me to...
View ArticleNew Post: why getOffset always fails?
I think my symbol is ok lkd> lmvm nt start end module name 804d8000 806d0480 nt (pdb symbols) c:\windows\symbols\ntkrnlpa.pdb\30B5FB31AE7E4ACAABA750AA241FF3311\ntkrnlpa.pdbLoaded symbol image file:...
View ArticleCreated Unassigned: getOffset failes with SymbolException [12145]
getOffset failes with error"SymbolException: failed to find module for symbol: xxx">>>getOffset("PsLoadedModuleList") SymbolException: failed to find module for symbol:...
View ArticleNew Post: why getOffset always fails?
confirmed issue: 12145 you can use workaraund: getOffset("nt!PsLoadedModuleList") - work properly nt = module("nt") nt.PsLoadedModuleList - work properly
View ArticleEdited Issue: getOffset failes with SymbolException [12145]
getOffset failes with error"SymbolException: failed to find module for symbol: xxx"```>>>getOffset("PsLoadedModuleList") SymbolException: failed to find module for symbol:...
View ArticleNew Post: why getOffset always fails?
yet another workaraund: expr("PsLoadedModuleList")
View ArticleNew Post: why getOffset always fails?
I tested lkd> !pycmd Python 2.7.3 (default, Apr 10 2012, 23:31:26) [MSC v.1500 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. (InteractiveConsole)...
View ArticleNew Post: why getOffset always fails?
Ok, there are two problems: 1) getOffset does not work properly with public symbol. It can be got round by using "expr" or pointing module name 2) In your last output pykd can not get symbols (...
View ArticleSource code checked in, #85081
[0.2.x] fixed : issue #12145 ( getOffset failes with SymbolException )
View ArticleNew Post: why getOffset always fails?
I tried to open the uploaded file as a dump. Pykd found symbols. I'm have no ideas now )))).
View Article