Skip to main content

A fully-featured remote debugger for python

Project description

madbg

Tests (GitHub Actions) PyPI Supported Python Versions PyPI version GitHub license

A fully-featured remote debugger for python.

  • Provides a full remote tty, allowing sending keyboard signals to the debugger, tab completion, command history, line editing and more
  • Runs the IPython debugger with all its capabilities
  • Allows attaching to running programs preemptively (does not require gdb, unlike similar tools)
  • Affects the debugged program minimally, although not yet recommended for use in production environment
  • Provides TTY features even when debugged program is a deamon, or run outside a terminal.

Installation

pip install madbg

Usage

Madbg provide both a python API and a CLI.

Attaching to a running process

madbg attach <pid>

Or

import madbg
madbg.attach_to_process(pid)

Starting a debugger

Using the CLI

Run a python file with automatic post-mortem:

madbg run path_to_your_script.py <args_for_script ...>

Run a python module similarly to python -m:

madbg run -m module.name <args_for_script ...>

Start a script, starting the debugger from the first line:

madbg run --use-set-trace script.py <args_for_script ...>

Using the API

Start a debugger in the next line:

madbg.set_trace()

Continue running the program until a client connects, then stop it and start a debugger:

madbg.set_trace_on_connect()

After an exception has occurred, or in an exception context, start a debugger in the frame the exception was raised from:

madbg.post_mortem()

Connecting to a debugger

Using the CLI

madbg connect

Using the API

madbg.connect_to_debugger()

Connection

All madbg API functions and CLI entry points allow using a custom IP and port (the default is 127.0.0.1:3513), for example:

madbg.set_trace(ip='0.0.0.0', port=1337)

or

madbg connect 8.8.8.8 1337

Platforms

Madbg supports linux with python>=3.7.

Possible effects

What madbg does that might affect a debugged program:

  • Changes the pgid and sid of the debugged process
  • Changes the CTTY of the debugged process
  • Affects child processes in unknown ways (Not tested yet)

What madbg doesn't do:

  • Writes or reads from stdio
  • Feeds your cat

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

madbg-1.1.3.zip (16.1 kB view details)

Uploaded Source

Built Distribution

madbg-1.1.3-py3-none-any.whl (12.2 kB view details)

Uploaded Python 3

File details

Details for the file madbg-1.1.3.zip.

File metadata

  • Download URL: madbg-1.1.3.zip
  • Upload date:
  • Size: 16.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/2.7.17

File hashes

Hashes for madbg-1.1.3.zip
Algorithm Hash digest
SHA256 ca1afafa1bd9eb003c9ab1a2a8eedd3e7fa98572116c2aa8431325bdf9f68290
MD5 8f3b2aeba2441c7905ecf1e49f58e1bd
BLAKE2b-256 cd47a7aa8b2e7e0459b73b1221e8831c1015a826983048188767dbfcaa72662b

See more details on using hashes here.

File details

Details for the file madbg-1.1.3-py3-none-any.whl.

File metadata

  • Download URL: madbg-1.1.3-py3-none-any.whl
  • Upload date:
  • Size: 12.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/2.7.17

File hashes

Hashes for madbg-1.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 f00e070617d6a5be6d00787b5e9c9199f3badfdd9262ad199682deb17138a023
MD5 ea5faaa40dcb2b509a3d14daa767c398
BLAKE2b-256 5f847dfdf334aad03621ceb5eb78c1f8f2768254a6bfb79352641c64de5535ef

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page