Skip to content

segevfiner/windbgmon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

windbgmon

PyPI Docs

Monitor Windows OutputDebugString messages.

Quick Start:

import windbgmon

with windbgmon.DbgMon() as dbgmon:
    for pid, msg in dbgmon:
        print(f"[{pid}] {msg}")

Can also be run as a module: python -m windbgmon.