Commented Unassigned: Kernel Hardware Breakpoint Single Step [13895]
I've been trying to use pykd to add hardware breakpoints on heap allocation functions in kernel mode. I'm experiencing a problem where after a few executions the kernel halts with a "Single step...
View ArticleCommented Unassigned: Kernel Hardware Breakpoint Single Step [13895]
I've been trying to use pykd to add hardware breakpoints on heap allocation functions in kernel mode. I'm experiencing a problem where after a few executions the kernel halts with a "Single step...
View ArticleCommented Unassigned: Kernel Hardware Breakpoint Single Step [13895]
I've been trying to use pykd to add hardware breakpoints on heap allocation functions in kernel mode. I'm experiencing a problem where after a few executions the kernel halts with a "Single step...
View ArticleCommented Unassigned: Kernel Hardware Breakpoint Single Step [13895]
I've been trying to use pykd to add hardware breakpoints on heap allocation functions in kernel mode. I'm experiencing a problem where after a few executions the kernel halts with a "Single step...
View ArticleSource code checked in, #90977
[pykd_bootstrapper] fixed : issue #13888 ( Kernel debug. After reboot module class works inproperly )
View ArticleUpdated Release: BOOTSTRAPPER FOR PYKD 0.3.x (Apr 15, 2015)
pykd.dll is useful if you have installed pykd as a python package ( by the command 'pip install pykd') but you are going to use pykd with windbg. In this case you can copy pykd.dll to windbg winext...
View ArticleReleased: BOOTSTRAPPER FOR PYKD 0.3.x (Apr 15, 2015)
pykd.dll is useful if you have installed pykd as a python package ( by the command 'pip install pykd') but you are going to use pykd with windbg. In this case you can copy pykd.dll to windbg winext...
View ArticleUpdated Release: BOOTSTRAPPER FOR PYKD 0.3.x (Apr 15, 2015)
pykd.dll is useful if you have installed pykd as a python package ( by the command 'pip install pykd') but you are going to use pykd with windbg. In this case you can copy pykd.dll to windbg winext...
View ArticleReleased: BOOTSTRAPPER FOR PYKD 0.3.x (Apr 15, 2015)
pykd.dll is windbg extension. It can load python core and pykd.pyd, installed as python module ( command: pip install pykd ). Using bootstrapper pykd.dll - is recommended way to use pykd with windbg.To...
View ArticleUpdated Release: BOOTSTRAPPER FOR PYKD 0.3.x (Apr 15, 2015)
pykd.dll is windbg extension. It can load python core and pykd.pyd, installed as python module ( command: pip install pykd ). Using bootstrapper pykd.dll - is recommended way to use pykd with windbg....
View ArticleCommented Issue: [0.3.x] Kernel debug. After reboot module class works...
```>>> mydrv = module('mydrv')>>> mydrv.reload()>>> print mydrv Module: dxgkrnlStart: fffff80001edb000 End: fffff80002056000 Size: 17b000Image: dxgkrnl.sys```It seems pykd...
View ArticleEdited Issue: [0.3.x] Kernel debug. After reboot module class works...
```>>> mydrv = module('mydrv')>>> mydrv.reload()>>> print mydrv Module: dxgkrnlStart: fffff80001edb000 End: fffff80002056000 Size: 17b000Image: dxgkrnl.sys```It seems pykd...
View ArticleClosed Unassigned: [0.3.x] setBp doesn't work. [13877]
```from pykd import *class Debugger(eventHandler): def __init__(self): initialize() eventHandler.__init__(self) def onBreakpoint(self, no): print "BREAK POINT" return eventResult.Proceed def...
View ArticleCreated Issue: [0.3.1.x] pykd import error on python 3 [13897]
```>>> import pykdTraceback (most recent call last): File "<stdin>", line 1, in <module> File...
View ArticleEdited Issue: [0.3.1.x] pykd import error on python 3 [13897]
```>>> import pykdTraceback (most recent call last): File "<stdin>", line 1, in <module> File...
View ArticleCreated Issue: [0.3.x] sys.stdout.isatty() raises AttributeError [13898]
WinDBG REPL:```>>> import sys>>> sys.stdout.isatty()Traceback (most recent call last): File "<console>", line 1, in <module>AttributeError: 'dout' object has no attribute...
View ArticleEdited Issue: [0.3.x] sys.stdout.isatty() raises AttributeError [13898]
WinDBG REPL:```>>> import sys>>> sys.stdout.isatty()Traceback (most recent call last): File "<console>", line 1, in <module>AttributeError: 'dout' object has no attribute...
View ArticleSource code checked in, #90980
[0.3.x] fixed : issue #13897 ( pykd import error on python 3 )
View Article