Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/segevfiner/windbgmon

Monitor Windows OutputDebugString messages
https://github.com/segevfiner/windbgmon

outputdebugstring outputdebugstringa outputdebugstringw python python3 windbg

Last synced: 5 days ago
JSON representation

Monitor Windows OutputDebugString messages

Awesome Lists containing this project

README

        

windbgmon
=========
.. image:: https://img.shields.io/pypi/v/windbgmon.svg
:target: https://pypi.org/project/windbgmon/
:alt: PyPI

.. image:: https://github.com/segevfiner/windbgmon/actions/workflows/docs.yml/badge.svg
:target: https://segevfiner.github.io/windbgmon/
:alt: Docs

Monitor Windows OutputDebugString messages.

Quick Start:

.. code-block:: python

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``.