
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
A fully-featured remote debugger for python.
pip install madbg
Madbg provide both a python API and a CLI.
madbg attach <pid>
Or
import madbg
madbg.attach_to_process(pid)
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 ...>
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()
madbg connect
madbg.connect_to_debugger()
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
Madbg supports linux with python>=3.7.
What madbg does that might affect a debugged program:
What madbg doesn't do:
FAQs
A fully-featured remote debugger for python
We found that madbg demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.