Register Python dbg
object as magic variable in debugger scripting console
#852
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR implements automatic registration of the
dbg
magic variable in the Python scripting console, allowing users to access the debugger controller directly without manual instantiation.Background
Previously, users had to manually create a
DebuggerController
instance in the Python console:Changes
Following the pattern established in the BinaryNinja API (
scriptingprovider.py
lines 1532-1535) and the kernelcache plugin, this PR adds:_get_debugger
function: Creates aDebuggerController
instance for the currently active binary view"dbg"
usingbinaryninja.PythonScriptingProvider.register_magic_variable()
Usage
Users can now access the debugger directly in the Python console:
The
dbg
variable automatically:None
when no active debugger context is availableDebuggerController
instancesImplementation
The implementation adds 8 lines of code to
api/python/debuggercontroller.py
:This follows the exact same pattern as other Binary Ninja magic variables and integrates seamlessly with the existing scripting infrastructure.
Fixes #851.
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.