Skip to content

Latest commit

 

History

History
18 lines (17 loc) · 637 Bytes

README.md

File metadata and controls

18 lines (17 loc) · 637 Bytes

windbg-plugins

Repository for any useful windbg plugins I've written.

#heap_trace Hooks heap operations and tracks their arguments and return values. Run:

.load pykd.pyd
!py "PATH_TO_REPO\heap_trace.py"

This will log to your home directory as log.log. You can then create a villoc visualisation of this by running:

python villoc.py log.log out.html

Example villoc output:
Example #Requirements All plugins use the pykd python interface for windbg.