New Post: [0.3.x] windbg hang when continue from breakpoint
Please, update pykd bootstrapper to 2.0.0.6 https://pykd.codeplex.com/releases/view/624814 I hope it will fix your problem Sorry for inconvenience
View ArticleSource code checked in, #91086
[pykd_ext_2.0] fixed : issue # 14024( eventHandler callbacks crash windbg)
View ArticleNew Post: How to detachProcess gracefully
If the code is simple enough without calling pykd.go(), The two methods attachProcess and detachProcess work perfectly well. If I add a callback based on pykd.eventHandler and run the method pykd.go, I...
View ArticleNew Post: How to detachProcess gracefully
Try to add pykd.break() before pykd.detachProcess
View ArticleEdited Issue: eventHandler callbacks crash windbg [14024]
1) Run this script:```import pykdclass handler(pykd.eventHandler): def onLoadModule(self, modBase, name):"""Load module handler""" print nameeh = handler()```2) After script is done, press F53) On the...
View ArticleSource code checked in, #91089
[0.3.x] added : typedVar.method has optional argument 'prototype' to work with overloaded methods
View ArticleReleased: PYKD 0.3.1.8 (Jan 05, 2017)
Installation as a WinDBG extension with pykd bootstrapper If you are going to run pykd in the windbg it is easiest way. Follow this link pykd bootstrapper 2.0 to install pykd bootstrapper and get...
View ArticleUpdated Release: PYKD 0.3.1.8 (янв 05, 2017)
Installation as a WinDBG extension with pykd bootstrapper If you are going to run pykd in the windbg it is easiest way. Follow this link pykd bootstrapper 2.0 to install pykd bootstrapper and get...
View ArticleCreated Issue: [0.3.x]malloc call return error [14028]
```>>> malloc = typedVar("MSVCR120D!malloc")>>> print mallocVoid*(__cdecl)(UInt8B)>>> addr = malloc( 100 )Amd64MachineInfo::SetVal: unknown register 56...
View ArticleEdited Issue: [0.3.x]malloc call return error [14028]
```>>> malloc = typedVar("MSVCR120D!malloc")>>> print mallocVoid*(__cdecl)(UInt8B)>>> addr = malloc( 100 )Amd64MachineInfo::SetVal: unknown register 56...
View ArticleCommented Issue: [0.3.x]malloc call return error [14028]
```>>> malloc = typedVar("MSVCR120D!malloc")>>> print mallocVoid*(__cdecl)(UInt8B)>>> addr = malloc( 100 )Amd64MachineInfo::SetVal: unknown register 56...
View ArticleSource code checked in, #91093
[0.3.x] fixed : issue # 14029 ( call function with "void" return type raises exception )
View ArticleSource code checked in, #91106
[0.3.x] added : typedVar constructor allowing to set function prototype to work with overloaded functions
View ArticleSource code checked in, #91108
[0.3.x] added : module.typedVar method with prototype argument
View ArticleEdited Issue: [0.3.x]malloc call return error [14028]
```>>> malloc = typedVar("MSVCR120D!malloc")>>> print mallocVoid*(__cdecl)(UInt8B)>>> addr = malloc( 100 )Amd64MachineInfo::SetVal: unknown register 56...
View ArticleCommented Issue: [0.3.x]malloc call return error [14028]
```>>> malloc = typedVar("MSVCR120D!malloc")>>> print mallocVoid*(__cdecl)(UInt8B)>>> addr = malloc( 100 )Amd64MachineInfo::SetVal: unknown register 56...
View Article