https://github.com/segevfiner/windbgmon
Monitor Windows OutputDebugString messages
https://github.com/segevfiner/windbgmon
outputdebugstring outputdebugstringa outputdebugstringw python python3 windbg
Last synced: 8 months ago
JSON representation
Monitor Windows OutputDebugString messages
- Host: GitHub
- URL: https://github.com/segevfiner/windbgmon
- Owner: segevfiner
- License: mit
- Created: 2022-01-14T13:40:11.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-10-09T19:04:25.000Z (over 3 years ago)
- Last Synced: 2025-03-27T15:55:19.103Z (about 1 year ago)
- Topics: outputdebugstring, outputdebugstringa, outputdebugstringw, python, python3, windbg
- Language: Python
- Homepage: https://pypi.org/project/windbgmon/
- Size: 181 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
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``.