debugger
debugger copied to clipboard
Binary Ninja debugger
When the target stops at an address and there is no function for it, the debugger will create a function at the address to allow the display of disassembly/ILs. This...
When the target stops at an address that does not have a function, the debugger creates a new function at the address to have the UI show the code. Right...
Most of the time when I wish to navigate to an address that it not code, what I want is to navigate to it in the view that does not...
Right now the debug adapters only report the name of the register reported by the backend, and these are usually the same name as the one used by the architecture....
If the TTD backend is selected but a trace isn't specified, can we either prevent the settings dialog from being accepted, or pop up separately afterward? (suggestion from stream...)
## TTD.Heap Implementation Plan Based on my analysis of the existing TTD.Memory and TTD.Calls functionality, I need to implement the TTD.Heap feature that will provide information about heap calls throughout...
This PR implements support for attaching TTD (Time Travel Debugging) recording to running processes, addressing a key limitation mentioned in the documentation. ## Changes Made ### UI Enhancements - Added...
This PR implements a comprehensive bookmark system for the Binary Ninja debugger that allows users to bookmark timestamps and navigate to them with double-click functionality, particularly useful for Time Travel...
## Summary Fixes the issue where debugger control buttons would be hidden when the debugger sidebar was narrow, requiring users to click an overflow menu to access them. With this...